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

add /instance/sshkeys/ endpoint for retrieving instance owners ssh keys

This commit is contained in:
Ing. Jan KRCMAR 2017-05-11 10:46:39 +02:00
parent b7457a4362
commit 4d08f956fb
2 changed files with 21 additions and 3 deletions

View file

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