deploy login & reCaptcha

This commit is contained in:
2025-05-04 15:24:28 +03:30
parent 3ab3fa2d13
commit 70fa849840
36 changed files with 494 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
router = DefaultRouter()
router.register('', '', basename='')
app_name = "authentication"
urlpatterns = [
path('api/v1/', include('apps.authentication.api.v1.urls')),
]