StudE-Backend/stude/student_status/urls.py

8 lines
239 B
Python
Raw Permalink Normal View History

from django.urls import path
from .views import StudentStatusAPIView, ActiveStudentStatusListAPIView
urlpatterns = [
path('self/', StudentStatusAPIView.as_view()),
path('active_list/', ActiveStudentStatusListAPIView.as_view()),
]