aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/urls.py
diff options
context:
space:
mode:
authorJustin Choquette <jchoquette@iol.unh.edu>2023-06-08 12:46:53 -0400
committerJustin Choquette <jchoquette@iol.unh.edu>2023-07-21 13:17:51 -0400
commita09db9f287a02873c0226759f8ea444bb304cd59 (patch)
tree59e744e4b998973a808abbae2d21fbdd6201d829 /src/account/urls.py
parent8ddc7e820e120f1dde4e901d3cb6f1dd3f281e65 (diff)
LaaS 3.0 Almost MVP
Change-Id: Ided9a43cf3088bb58a233dc459711c03f43e11b8 Signed-off-by: Justin Choquette <jchoquette@iol.unh.edu>
Diffstat (limited to 'src/account/urls.py')
-rw-r--r--src/account/urls.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/account/urls.py b/src/account/urls.py
index 6d4ef2f..23ce122 100644
--- a/src/account/urls.py
+++ b/src/account/urls.py
@@ -35,11 +35,9 @@ from account.views import (
UserListView,
account_resource_view,
account_booking_view,
- account_images_view,
account_detail_view,
template_delete_view,
booking_cancel_view,
- image_delete_view,
)
app_name = 'account'
@@ -53,7 +51,5 @@ urlpatterns = [
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/images/$', account_images_view, name='my-images'),
- path('my/images/delete/<int:image_id>', image_delete_view),
url(r'^my/$', account_detail_view, name='my-account'),
]