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/account/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/account/urls.py')
-rw-r--r-- | src/account/urls.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/account/urls.py b/src/account/urls.py index 35ef43b..6865ded 100644 --- a/src/account/urls.py +++ b/src/account/urls.py @@ -34,8 +34,6 @@ from account.views import ( account_resource_view, account_booking_view, account_detail_view, - template_delete_view, - booking_cancel_view, account_settings_view ) @@ -46,8 +44,6 @@ urlpatterns = [ url(r'^login/$', OIDCLoginView.as_view(), name='login'), url(r'^logout/$', LogoutView.as_view(), name='logout'), url(r'^my/resources/$', account_resource_view, name='my-resources'), - path('my/resources/delete/<int:resource_id>', template_delete_view), url(r'^my/bookings/$', account_booking_view, name='my-bookings'), - path('my/bookings/cancel/<int:booking_id>', booking_cancel_view), url(r'^my/$', account_detail_view, name='my-account'), ] |