akarpov/config/api_router.py

29 lines
686 B
Python
Raw Normal View History

2022-11-23 11:41:43 +03:00
from django.urls import include, path
from rest_framework.authtoken.views import obtain_auth_token
2023-01-11 13:48:55 +03:00
from akarpov.users.api.views import UserRegisterViewSet
2022-11-23 11:41:43 +03:00
urlpatterns_v1 = [
path(
"auth/",
include(
[
path(
"register/", UserRegisterViewSet.as_view(), name="user_register_api"
),
path("token/", obtain_auth_token),
]
),
),
path(
"users/",
include("akarpov.users.api.urls"),
),
path(
"tools/",
include([path("qr/", include("akarpov.tools.qr.api.urls"))]),
2022-11-23 11:41:43 +03:00
),
]
urlpatterns = [path("v1/", include(urlpatterns_v1))]