index.community/backend/urls.py

38 lines
1.2 KiB
Python
Raw Normal View History

2018-08-26 00:13:46 +00:00
"""backend 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'))
"""
2018-08-27 11:41:01 +00:00
from django.urls import path, include, re_path
from django.views.generic import TemplateView
2018-08-26 00:32:55 +00:00
from rest_framework import routers
from apiv1 import views
2018-08-27 10:56:09 +00:00
class OptionalTrailingSlashRouter(routers.DefaultRouter):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.trailing_slash = r'/?'
router = OptionalTrailingSlashRouter()
2018-08-26 00:32:55 +00:00
router.register(r'instances', views.InstanceViewSet)
2018-08-26 00:13:46 +00:00
urlpatterns = [
2018-08-27 01:11:11 +00:00
path(r'api/v1/', include(router.urls)),
2018-08-27 11:41:01 +00:00
re_path(r'.*', TemplateView.as_view(template_name='index.html')),
2018-08-27 01:11:11 +00:00
path(r'silk/', include('silk.urls', namespace='silk')),
2018-08-26 00:13:46 +00:00
]
2018-08-26 22:12:24 +00:00