diff options
author | Justin Choquette <jchoquette@iol.unh.edu> | 2023-09-27 17:03:38 -0400 |
---|---|---|
committer | Justin Choquette <jchoquette@iol.unh.edu> | 2023-10-19 18:10:17 -0400 |
commit | aff53e072502d63d8002d9c83213ce7f9d12c352 (patch) | |
tree | 3a30adca1fe7c958ddc092dbf7b9fa24259dd923 /src/liblaas/urls.py | |
parent | 1947d40115c7b13f8617ea92078a6f910d6bc799 (diff) |
user subsystem clean up
Change-Id: Ia59bb7c1e4412693f55cdcaf9607bcb4158850ae
Signed-off-by: Justin Choquette <jchoquette@iol.unh.edu>
Diffstat (limited to 'src/liblaas/urls.py')
-rw-r--r-- | src/liblaas/urls.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/liblaas/urls.py b/src/liblaas/urls.py new file mode 100644 index 0000000..6deb9cf --- /dev/null +++ b/src/liblaas/urls.py @@ -0,0 +1,24 @@ +############################################################################## +# Copyright (c) 2018 Sawyer Bergeron and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +from django.conf.urls import url + +from liblaas.endpoints import * + +app_name = 'liblaas' +urlpatterns = [ + url(r'^flavor/$', request_list_flavors, name='flavor'), + url(r'^template/$', request_list_template, name='template'), + url(r'^template/create/$', request_create_template, name='template_create'), + url(r'^booking/create/$', request_create_booking, name='booking_create'), + url(r'^migrate/new/$', request_migrate_new, name='migrate_new'), + url(r'^migrate/conflict/$', request_migrate_conflict, name='migrate_conflict'), + url(r'^ipa/ssh/$', request_set_ssh, name='set_ssh'), + url(r'^ipa/company/$', request_set_company, name='set_company'), +]
\ No newline at end of file |