plateforme-corres2math/apps/api/urls.py

27 lines
805 B
Python
Raw Normal View History

2020-12-26 20:26:26 +00:00
# Copyright (C) 2020 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
2020-09-21 15:34:27 +00:00
from django.conf import settings
from django.conf.urls import include, url
2020-09-20 20:31:37 +00:00
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 15:34:27 +00:00
if "logs" in settings.INSTALLED_APPS:
2020-09-24 12:30:24 +00:00
from logs.api.urls import register_logs_urls
register_logs_urls(router, "logs")
2020-09-21 15:34:27 +00:00
2020-09-20 20:31:37 +00: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')),
]