deploy login & reCaptcha
This commit is contained in:
10
apps/authentication/urls.py
Normal file
10
apps/authentication/urls.py
Normal 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')),
|
||||
]
|
||||
Reference in New Issue
Block a user