Worked out API's
This commit is contained in:
7
student/urls.py
Normal file
7
student/urls.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("all_students/", views.StudentListCreate.as_view(), name="student-view-createlist"),
|
||||
path("<int:w_number>/", views.StudentRetrieveUpdateDestroy.as_view(), name="update"),
|
||||
]
|
||||
Reference in New Issue
Block a user