2024-02-07 02:26:49 +01:00
|
|
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
2020-02-06 23:29:17 +01:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-08-31 00:49:41 +02:00
|
|
|
from django.conf import settings
|
2024-02-07 20:00:58 +01:00
|
|
|
from django.conf.urls import include
|
2024-02-07 18:21:08 +01:00
|
|
|
from django.urls import re_path
|
2020-09-02 19:00:04 +02:00
|
|
|
from rest_framework import routers
|
2020-09-03 21:47:08 +02:00
|
|
|
|
2021-03-09 10:41:43 +01:00
|
|
|
from .views import UserInformationView
|
2020-09-02 19:00:04 +02:00
|
|
|
from .viewsets import ContentTypeViewSet, UserViewSet
|
2020-03-11 11:37:47 +01:00
|
|
|
|
2020-02-06 23:29:17 +01:00
|
|
|
# Routers provide an easy way of automatically determining the URL conf.
|
2020-02-18 11:58:42 +01:00
|
|
|
# Register each app API router and user viewset
|
2020-02-06 23:29:17 +01:00
|
|
|
router = routers.DefaultRouter()
|
2020-03-11 11:37:47 +01:00
|
|
|
router.register('models', ContentTypeViewSet)
|
2020-02-08 15:08:55 +01:00
|
|
|
router.register('user', UserViewSet)
|
2020-08-31 00:49:41 +02:00
|
|
|
|
2024-08-04 23:38:21 +02:00
|
|
|
if "activity" in settings.INSTALLED_APPS:
|
|
|
|
from activity.api.urls import register_activity_urls
|
|
|
|
register_activity_urls(router, 'activity')
|
|
|
|
|
|
|
|
if "food" in settings.INSTALLED_APPS:
|
|
|
|
from food.api.urls import register_food_urls
|
|
|
|
register_food_urls(router, 'food')
|
|
|
|
|
|
|
|
if "logs" in settings.INSTALLED_APPS:
|
|
|
|
from logs.api.urls import register_logs_urls
|
|
|
|
register_logs_urls(router, 'logs')
|
|
|
|
|
2020-08-31 00:49:41 +02:00
|
|
|
if "member" in settings.INSTALLED_APPS:
|
|
|
|
from member.api.urls import register_members_urls
|
|
|
|
register_members_urls(router, 'members')
|
|
|
|
|
|
|
|
if "note" in settings.INSTALLED_APPS:
|
|
|
|
from note.api.urls import register_note_urls
|
|
|
|
register_note_urls(router, 'note')
|
|
|
|
|
|
|
|
if "permission" in settings.INSTALLED_APPS:
|
|
|
|
from permission.api.urls import register_permission_urls
|
|
|
|
register_permission_urls(router, 'permission')
|
|
|
|
|
2024-08-04 23:38:21 +02:00
|
|
|
if "treasury" in settings.INSTALLED_APPS:
|
|
|
|
from treasury.api.urls import register_treasury_urls
|
|
|
|
register_treasury_urls(router, 'treasury')
|
2020-08-31 00:49:41 +02:00
|
|
|
|
|
|
|
if "wei" in settings.INSTALLED_APPS:
|
|
|
|
from wei.api.urls import register_wei_urls
|
|
|
|
register_wei_urls(router, 'wei')
|
2020-02-06 23:29:17 +01:00
|
|
|
|
2020-02-17 19:44:56 +01:00
|
|
|
app_name = 'api'
|
|
|
|
|
2020-02-06 23:29:17 +01:00
|
|
|
# Wire up our API using automatic URL routing.
|
|
|
|
# Additionally, we include login URLs for the browsable API.
|
|
|
|
urlpatterns = [
|
2024-02-07 18:21:08 +01:00
|
|
|
re_path('^', include(router.urls)),
|
|
|
|
re_path('^me/', UserInformationView.as_view()),
|
|
|
|
re_path('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
2020-02-17 14:08:40 +01:00
|
|
|
]
|