feat: login view

This commit is contained in:
2024-11-21 11:43:38 +01:00
parent 96eb517962
commit 2c7e51d602
15 changed files with 369 additions and 151 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ urlpatterns = [
"swagger/", SpectacularSwaggerView.as_view(url_name="schema"), name="swagger-ui"
),
path("redoc/", SpectacularRedocView.as_view(url_name="schema"), name="redoc"),
path("shop/", include("shop.api.v1.routers", namespace="shop")),
path("shop/", include("shop.api.v1.routers", namespace="shop_api")),
path("files/", include("files.api.v1.urls", namespace="files")),
path("auth/", include("users.api.v1.urls", namespace="auth")),
]
+1
View File
@@ -6,6 +6,7 @@ from django.urls import path, include
urlpatterns = [
path("", include("shop.urls")),
path("admin/", admin.site.urls),
path("api/v1/", include("config.api.v1.urls")),
path("watchman/", include("watchman.urls")),