aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/urls.py
diff options
context:
space:
mode:
authorJustin Choquette <jchoquette@iol.unh.edu>2023-08-07 14:10:19 -0400
committerJustin Choquette <jchoquette@iol.unh.edu>2023-08-07 14:16:04 -0400
commita6168306c08e8d5b207b9acc48869180d194ff01 (patch)
tree51ffcafac4ae0b5fd4da363d9bf839e8ad3fc286 /src/account/urls.py
parenta09db9f287a02873c0226759f8ea444bb304cd59 (diff)
User subsystem
Change-Id: Ibef4ede9b2d6a3ea465f79a9b5cbcc821afbccae Signed-off-by: Justin Choquette <jchoquette@iol.unh.edu>
Diffstat (limited to 'src/account/urls.py')
-rw-r--r--src/account/urls.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/account/urls.py b/src/account/urls.py
index 23ce122..35ef43b 100644
--- a/src/account/urls.py
+++ b/src/account/urls.py
@@ -29,24 +29,22 @@ from django.conf.urls import url
from django.urls import path
from account.views import (
- AccountSettingsView,
OIDCLoginView,
LogoutView,
- UserListView,
account_resource_view,
account_booking_view,
account_detail_view,
template_delete_view,
booking_cancel_view,
+ account_settings_view
)
app_name = 'account'
urlpatterns = [
- url(r'^settings/', AccountSettingsView.as_view(), name='settings'),
+ url(r'^settings/', account_settings_view, name='settings'),
url(r'^login/$', OIDCLoginView.as_view(), name='login'),
url(r'^logout/$', LogoutView.as_view(), name='logout'),
- url(r'^users/$', UserListView.as_view(), name='users'),
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'),