mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-07-04 01:32:08 +02:00
Restart the project in Django
This commit is contained in:
18
apps/api/urls.py
Normal file
18
apps/api/urls.py
Normal file
@ -0,0 +1,18 @@
|
||||
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)
|
||||
|
||||
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')),
|
||||
]
|
Reference in New Issue
Block a user