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 16:15:45 +00:00
|
|
|
from django.urls import path, include
|
2018-08-27 11:41:01 +00:00
|
|
|
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-09-01 13:32:04 +00:00
|
|
|
router.register(r'graph/nodes', views.NodeView)
|
2018-09-01 18:46:00 +00:00
|
|
|
router.register(r'graph/edges', views.EdgeView, base_name='edge')
|
2018-08-26 00:13:46 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2018-08-27 16:15:45 +00:00
|
|
|
path('api/v1/', include(router.urls)),
|
|
|
|
path('silk/', include('silk.urls', namespace='silk')),
|
|
|
|
path('', TemplateView.as_view(template_name='index.html')),
|
2018-08-26 00:13:46 +00:00
|
|
|
]
|