Borrowing-TrackerBackend/equipment_tracker/accounts/urls.py

11 lines
370 B
Python
Raw Normal View History

2023-11-09 19:48:13 +08:00
from django.contrib import admin
from django.urls import path, include
from accounts import views
2023-11-09 19:48:13 +08:00
urlpatterns = [
path('', include('djoser.urls')),
path('', include('djoser.urls.jwt')),
path('clearance/', views.ClearanceViewSet.as_view()),
path('teachers/', views.TeacherViewSet.as_view()),
path('technicians/', views.TechnicianViewSet.as_view()),
2023-11-09 19:48:13 +08:00
]