Added jwt, swagger...

This commit is contained in:
maciejrusek
2026-03-11 23:20:03 +01:00
parent f84c708f0a
commit ca605ac59d
14 changed files with 83 additions and 7 deletions

View File

@@ -1,5 +1,11 @@
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
from django.urls import include, path
urlpatterns = [
path("shelves", include("apps.shelves.urls"))
path("auth", include("apps.authentication.urls")),
path("shelves", include("apps.shelves.urls")),
path('schema/', SpectacularAPIView.as_view(), name='schema'),
path('swagger/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'),
]