1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

instance/check_instance service endpoint added. checks for existing instance (returns json)

This commit is contained in:
Jan Krcmar 2016-02-11 14:37:26 +01:00
parent a1d5edebe2
commit 2958a21ad1
2 changed files with 10 additions and 0 deletions

View file

@ -10,4 +10,6 @@ urlpatterns = [
views.inst_status, name='inst_status'),
url(r'^guess_mac_address/(?P<vname>[\w\-\.]+)/$',
views.guess_mac_address, name='guess_mac_address'),
url(r'^check_instance/(?P<vname>[\w\-\.]+)/$',
views.check_instance, name='check_instance'),
]