Uploading chapter 11 remaining files

This commit is contained in:
muassif
2021-07-08 22:05:16 +04:00
committed by GitHub
parent 49e6811b81
commit 822894f3ea
20 changed files with 301 additions and 0 deletions
@@ -0,0 +1,13 @@
from django.urls import path
from .views import GradeViewSet
urlpatterns = [
path('grades/', GradeViewSet.as_view({
'get':'list',
'post':'create'
})),
path('grades/<str:id>', GradeViewSet.as_view({
'get': 'retrieve'
}))
]