mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-11 01:16:33 +03:00
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
from django.urls import include, path
|
|
from rest_framework.authtoken.views import obtain_auth_token
|
|
|
|
from akarpov.users.api.views import GenerateUserJWTTokenAPIView, UserRegisterAPIViewSet
|
|
|
|
app_name = "api"
|
|
|
|
urlpatterns_v1 = [
|
|
path(
|
|
"auth/",
|
|
include(
|
|
[
|
|
path(
|
|
"register/",
|
|
UserRegisterAPIViewSet.as_view(),
|
|
name="user_register_api",
|
|
),
|
|
path("token/", obtain_auth_token),
|
|
path("jwt/", GenerateUserJWTTokenAPIView.as_view()),
|
|
]
|
|
),
|
|
),
|
|
path(
|
|
"users/",
|
|
include("akarpov.users.api.urls", namespace="users"),
|
|
),
|
|
path(
|
|
"notifications/",
|
|
include("akarpov.notifications.providers.urls", namespace="notifications"),
|
|
),
|
|
path(
|
|
"blog/",
|
|
include("akarpov.blog.api.urls", namespace="blog"),
|
|
),
|
|
path(
|
|
"tools/",
|
|
include(
|
|
"akarpov.tools.api.urls",
|
|
namespace="tools",
|
|
),
|
|
),
|
|
]
|
|
|
|
urlpatterns = [path("v1/", include(urlpatterns_v1))]
|