mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-16 02:10:19 -04:00
16 lines
582 B
Python
16 lines
582 B
Python
from django.urls import include, path
|
|
from rest_framework import routers
|
|
from api import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'students', views.StudentViewSet)
|
|
router.register(r'teachers', views.TeacherViewSet)
|
|
router.register(r'assignments', views.AssignmentViewSet)
|
|
router.register(r'classes', views.ClassesViewSet)
|
|
|
|
# Wire up our API using automatic URL routing.
|
|
# Additionally, we include login URLs for the browsable API.
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
|
|
] |