IDDRS_API/data_api/api/urls.py
2023-11-30 15:06:43 +01:00

13 lines
378 B
Python

from django.urls import path
from . import views
from .views import MyTokenObtainPairView
from rest_framework_simplejwt.views import TokenRefreshView
urlpatterns = [
path('', views.getRoutes, name="routes"),
path('token/', MyTokenObtainPairView.as_view(), name='token_obtain_pair'),
path('token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
]