2022-04-03 01:20:53 +02:00
|
|
|
from django.urls import include, path
|
|
|
|
from rest_framework import routers
|
2022-07-14 01:39:19 +02:00
|
|
|
from .views.std_views import AdminFilmViewSet, FilmViewSet
|
2022-05-30 00:18:09 +02:00
|
|
|
from .views.tmdb_views import TmdbViewSet
|
2022-04-03 01:20:53 +02:00
|
|
|
|
|
|
|
router = routers.DefaultRouter()
|
2022-07-14 01:39:19 +02:00
|
|
|
router.register(r"admin/films", AdminFilmViewSet, "admin-films")
|
|
|
|
router.register(r"films", FilmViewSet, "films")
|
2022-05-30 00:18:09 +02:00
|
|
|
router.register(r"tmdb", TmdbViewSet, "tmdb")
|
2022-04-03 01:20:53 +02:00
|
|
|
|
|
|
|
# Wire up our API using automatic URL routing.
|
|
|
|
# Additionally, we include login URLs for the browsable API.
|
|
|
|
urlpatterns = [
|
2022-04-03 01:20:54 +02:00
|
|
|
path("", include(router.urls)),
|
|
|
|
path("api-auth/", include("rest_framework.urls", namespace="rest_framework")),
|
2022-04-03 01:20:53 +02:00
|
|
|
]
|