You've already forked WhereToGoRedux
mirror of
https://github.com/Llloooggg/WhereToGoRedux.git
synced 2026-03-06 04:56:23 +03:00
15 lines
349 B
Python
15 lines
349 B
Python
from django.urls import path
|
|
from django.urls import include
|
|
|
|
from accounts.views import CustomTokenObtainPairView
|
|
|
|
urlpatterns = [
|
|
path("", include("djoser.urls")),
|
|
path(
|
|
"auth/jwt/create",
|
|
CustomTokenObtainPairView.as_view(),
|
|
name="custom_token_obtain_pair",
|
|
),
|
|
path("auth/", include("djoser.urls.jwt")),
|
|
]
|