Add: creators api app
This commit is contained in:
parent
72c0a012c9
commit
217ecaa253
7 changed files with 160 additions and 0 deletions
12
backend/api/creators/urls.py
Normal file
12
backend/api/creators/urls.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import CreatorListView, CreatorDetailsView
|
||||
|
||||
urlpatterns = [
|
||||
path("", CreatorListView.as_view(), name="creator_list"),
|
||||
path(
|
||||
"<str:creator_id>",
|
||||
CreatorDetailsView.as_view(),
|
||||
name="creator_details",
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue