first commit

This commit is contained in:
2026-01-18 11:29:19 +03:30
commit b42c80cf1c
354 changed files with 14705 additions and 0 deletions

25
authentication/urls.py Normal file
View File

@@ -0,0 +1,25 @@
from django.urls import include, path
from rest_framework.routers import DefaultRouter
from authentication import views as auth_views
router = DefaultRouter()
router.register(
r'province',
auth_views.ProvinceViewSet,
basename="province"
)
router.register(
r'city',
auth_views.CityViewSet,
basename="city"
)
router.register(
r'profile',
auth_views.UserProfileViewSet,
basename="profile"
)
urlpatterns = [
path('', include(router.urls))
]