[FEAT] Enable django-allauth for enhanced user management & federation

This commit is contained in:
2023-02-24 19:42:07 +00:00
parent 05ca7433f1
commit 86e18c399d
58 changed files with 1248 additions and 30 deletions

View File

@@ -33,9 +33,6 @@ urlpatterns = [
path('hijack/',
include('hijack.urls', namespace='hijack')),
path('',
include('django.contrib.auth.urls')),
path('',
views.IndexView.as_view(),
name='index'),
@@ -55,4 +52,7 @@ urlpatterns = [
path('',
include('pwa.urls')),
path('accounts/',
include('allauth.urls')),
] # yapf: disable