API in order to get the list of IOU, Dynamips, Qemu images

This commit is contained in:
Julien Duponchelle
2015-04-13 14:33:13 +02:00
parent 5a4ffae6a2
commit bca90bc563
14 changed files with 218 additions and 36 deletions

View File

@ -42,7 +42,7 @@ class VirtualBoxHandler:
def show(request, response):
vbox_manager = VirtualBox.instance()
vms = yield from vbox_manager.get_list()
vms = yield from vbox_manager.list_images()
response.json(vms)
@classmethod