backend/passfinder/events/api/urls.py

22 lines
682 B
Python
Raw Normal View History

2023-05-21 20:46:07 +03:00
from django.urls import path
from passfinder.events.api.views import (
BuildRouteApiView,
ListRegionApiView,
ListCityApiView,
2023-05-27 01:03:34 +03:00
SaveRouteApiView,
ListUserFavoriteRoutes,
RetrieveRoute,
)
2023-05-21 20:46:07 +03:00
app_name = "events"
urlpatterns = [
2023-05-23 00:33:04 +03:00
path("route/build", BuildRouteApiView.as_view(), name="build_route"),
2023-05-27 01:03:34 +03:00
path("route/save", SaveRouteApiView.as_view(), name="save_route"),
path("route/list", ListUserFavoriteRoutes.as_view(), name="list_routes"),
path("route/<int:pk>", RetrieveRoute.as_view(), name="get_route"),
path("data/regions", ListRegionApiView.as_view(), name="regions"),
path("data/cities", ListCityApiView.as_view(), name="cities"),
2023-05-21 20:46:07 +03:00
]