From 4c99f3dcbf932b4532aa03530e4fbbc9d8677fa5 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sat, 28 Dec 2024 12:56:39 +0100 Subject: [PATCH] remove unused endpoints --- src/backend/InvenTree/InvenTree/urls.py | 26 ------------------------- 1 file changed, 26 deletions(-) diff --git a/src/backend/InvenTree/InvenTree/urls.py b/src/backend/InvenTree/InvenTree/urls.py index 0f0aa73943..41f2f6d93a 100644 --- a/src/backend/InvenTree/InvenTree/urls.py +++ b/src/backend/InvenTree/InvenTree/urls.py @@ -105,32 +105,6 @@ apipatterns = [ # path( # 'providers/', SocialProviderListView.as_view(), name='social_providers' # ), - # path( - # 'emails/', - # include([ - # path( - # '/', - # include([ - # path( - # 'primary/', - # EmailPrimaryView.as_view(), - # name='email-primary', - # ), - # path( - # 'verify/', - # EmailVerifyView.as_view(), - # name='email-verify', - # ), - # path( - # 'remove/', - # EmailRemoveView().as_view(), - # name='email-remove', - # ), - # ]), - # ), - # path('', EmailListView.as_view(), name='email-list'), - # ]), - # ), # path('social/', include(get_provider_urls())), # path( # 'social/', SocialAccountListView.as_view(), name='social_account_list'