logbook-django/logbook/flight/api.py
2019-09-15 20:32:42 -04:00

16 lines
525 B
Python

from rest_framework import routers
from django.urls import path, include
from flight import views
router = routers.DefaultRouter()
router.register(r"flights", views.FlightViewSet)
router.register(r"planes", views.PlaneViewSet)
router.register(r"airports", views.AirportViewSet)
# 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")),
]