Uploading chapter 11 remaining files
This commit is contained in:
@@ -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'
|
||||
}))
|
||||
]
|
||||
Reference in New Issue
Block a user