mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-10 22:16:35 +03:00
25 lines
836 B
Python
25 lines
836 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from passfinder.recomendations.api.views import TinderView, PersonalRecommendation, OnboardingViewset
|
|
from passfinder.users.api.views import (
|
|
UserViewSet,
|
|
CreateUserPreferenceApiView,
|
|
ListUserFavoritePointsApiView,
|
|
)
|
|
|
|
router = DefaultRouter()
|
|
|
|
router.register("tinder", TinderView)
|
|
router.register("recommendations", PersonalRecommendation)
|
|
router.register("user", UserViewSet)
|
|
router.register('onboarding', OnboardingViewset)
|
|
|
|
app_name = "api"
|
|
urlpatterns = [
|
|
path("", include("passfinder.events.api.urls")),
|
|
path("auth/", include("passfinder.users.api.urls")),
|
|
path("user/preference", CreateUserPreferenceApiView.as_view()),
|
|
path("user/favorite", ListUserFavoritePointsApiView.as_view()),
|
|
]
|
|
urlpatterns += router.urls
|