11 lines
414 B
Python
11 lines
414 B
Python
|
|
from django.urls import path
|
||
|
|
from rest_framework_simplejwt.views import TokenRefreshView
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('admin/auth/login/', views.AdminLoginView.as_view(), name='admin_login'),
|
||
|
|
path('auth/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
|
||
|
|
path('auth/me/', views.MeView.as_view(), name='auth_me'),
|
||
|
|
path('health/', views.HealthView.as_view(), name='health'),
|
||
|
|
]
|