35 lines
975 B
Python
35 lines
975 B
Python
from django.urls import path
|
|
from rest_framework.routers import DefaultRouter
|
|
from rest_framework.authtoken.views import obtain_auth_token
|
|
from .views import (
|
|
PredictionViewSet,
|
|
SavedPointViewset,
|
|
TelemetryListCreateView,
|
|
get_csrf,
|
|
login_view,
|
|
logout_view,
|
|
SessionView,
|
|
WhoAmIView
|
|
)
|
|
|
|
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'predictions', PredictionViewSet, basename='predictions')
|
|
router.register(r'saved-points', SavedPointViewset, basename='saved-points')
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
path("csrf/", get_csrf, name='api-csrf'),
|
|
path('token', obtain_auth_token, name = 'get_token'),
|
|
path("login/", login_view, name='api-login'),
|
|
path("logout/", logout_view, name='api-logout'),
|
|
path("session/", SessionView.as_view(), name='api-session'),
|
|
path("whoami/", WhoAmIView.as_view(), name='api-whoami'),
|
|
path("<uuid:pk>/telemetry/", TelemetryListCreateView.as_view(), name="create_telemetry"),
|
|
]
|
|
|
|
|
|
|
|
urlpatterns += router.urls
|