1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 14:53:02 +00:00

24 lines
734 B
Python
Raw Normal View History

2020-09-21 17:34:27 +02:00
from django.conf import settings
2020-09-20 22:31:37 +02:00
from django.conf.urls import url, include
from rest_framework import routers
from .viewsets import UserViewSet
# Routers provide an easy way of automatically determining the URL conf.
# Register each app API router and user viewset
router = routers.DefaultRouter()
router.register('user', UserViewSet)
2020-09-21 17:34:27 +02:00
if "logs" in settings.INSTALLED_APPS:
from logs.api.views import ChangelogViewSet
router.register('logs', ChangelogViewSet)
2020-09-20 22:31:37 +02:00
app_name = 'api'
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
url('^', include(router.urls)),
url('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
]