14 lines
405 B
Python
14 lines
405 B
Python
from django.urls import path
|
|
|
|
from rest_framework_simplejwt.views import (
|
|
TokenObtainPairView,
|
|
TokenRefreshView,
|
|
)
|
|
|
|
from api.authentication.views import LogoutView
|
|
|
|
urlpatterns = [
|
|
path("logout/", LogoutView.as_view(), name="logout"),
|
|
path("token/", TokenObtainPairView.as_view(), name="token_obtain_pair"),
|
|
path("token/refresh/", TokenRefreshView.as_view(), name="token_refresh"),
|
|
]
|