cineclub-site/server/myapi/urls.py

14 lines
434 B
Python
Raw Normal View History

2022-04-03 01:20:53 +02:00
from django.urls import include, path
from rest_framework import routers
from .views.std_views import (FilmViewSet)
2022-04-03 01:20:53 +02:00
router = routers.DefaultRouter()
router.register(r'films', FilmViewSet)
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 = [
path('', include(router.urls)),
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]