freekake_api/freekake_api/content/urls.py

12 lines
382 B
Python

from django.urls import path
from content import views
urlpatterns = [
path('contents/', views.ContentList.as_view()),
path('contents/<int:pk>/', views.ContentDetail.as_view()),
path('themes/', views.ContentThemeChoices.as_view()),
path('topics/<str:theme_key>/', views.ContentTopicChoices.as_view()),
path('formats/', views.ContentFormatChoices.as_view()),
]