2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

remove old urls

This commit is contained in:
Matthias Mair
2025-01-08 20:04:55 +01:00
parent a00f090a87
commit 1191d1cd82

View File

@ -95,26 +95,6 @@ apipatterns = [
path(
'auth/',
include([
# TODO remove
# re_path(
# r'^registration/account-confirm-email/(?P<key>[-:\w]+)/$',
# ConfirmEmailView.as_view(),
# name='account_confirm_email',
# ),
# path('registration/', include('dj_rest_auth.registration.urls')),
# path(
# 'providers/', SocialProviderListView.as_view(), name='social_providers'
# ),
# path('social/', include(get_provider_urls())),
# path(
# 'social/', SocialAccountListView.as_view(), name='social_account_list'
# ),
# path(
# 'social/<int:pk>/disconnect/',
# SocialAccountDisconnectView.as_view(),
# name='social_account_disconnect',
# ),
# path('login/', users.api.Login.as_view(), name='api-login'),
path('logout/', users.api.Logout.as_view(), name='api-logout'),
path(
'login-redirect/',