43 lines
1.6 KiB
Python
43 lines
1.6 KiB
Python
"""authserver URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.1/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from django.conf.urls import url, include
|
|
from rest_framework import routers
|
|
from .api import views
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'tool', views.ToolViewSet)
|
|
router.register(r'category', views.CategoryViewSet, 'category')
|
|
router.register(r'tooldata', views.ToolDataViewSet, 'tooldata')
|
|
router.register(r'profile', views.ProfileViewSet)
|
|
router.register(r'user', views.UserViewSet, 'user')
|
|
|
|
urlpatterns = [
|
|
url(r'^', include(router.urls)),
|
|
url(r'^admin/', admin.site.urls),
|
|
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
|
url(r'^login/', views.login),
|
|
url(r'^cards/(?P<mac>.*)/', views.cards),
|
|
url(r'^update-cards/', views.update_cards)
|
|
]
|
|
|
|
if settings.DEBUG is True:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|