2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

remove unused endpoints

This commit is contained in:
Matthias Mair
2024-12-28 12:56:39 +01:00
parent 8025260961
commit 4c99f3dcbf

View File

@ -105,32 +105,6 @@ apipatterns = [
# path(
# 'providers/', SocialProviderListView.as_view(), name='social_providers'
# ),
# path(
# 'emails/',
# include([
# path(
# '<int:pk>/',
# 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'