feat: add portal allauth account flow

This commit is contained in:
QiuSW
2026-07-03 11:27:45 +08:00
parent 7df2c51903
commit d61a641b7e
29 changed files with 446 additions and 31 deletions
+2
View File
@@ -20,6 +20,8 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('', include('apps.portal.urls')),
path('accounts/', include('allauth.urls')),
path('admin/', admin.site.urls),
path('api/', include('apps.api.urls')),
]