summaryrefslogtreecommitdiffstats
path: root/src/ogRest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ogRest.py')
-rw-r--r--src/ogRest.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ogRest.py b/src/ogRest.py
index 0d51d6a..b123505 100644
--- a/src/ogRest.py
+++ b/src/ogRest.py
@@ -161,6 +161,11 @@ class ogThread():
client.send(response.get())
return
+ jsonResp = jsonResponse()
+ jsonResp.addElement('disk', request.getDisk())
+ jsonResp.addElement('partition', request.getPartition())
+ jsonResp.addElement('image_id', request.getId())
+
response = restResponse(ogResponses.OK, jsonResp)
client.send(response.get())