|
|
|
|
@ -1,8 +1,11 @@
|
|
|
|
|
from django.conf.urls import url
|
|
|
|
|
from django.urls import path, re_path, include
|
|
|
|
|
from django.urls import include
|
|
|
|
|
from django.urls import path
|
|
|
|
|
from django.urls import re_path
|
|
|
|
|
from drf_yasg import openapi
|
|
|
|
|
from drf_yasg.views import get_schema_view
|
|
|
|
|
from rest_framework import permissions, routers
|
|
|
|
|
from rest_framework import permissions
|
|
|
|
|
from rest_framework import routers
|
|
|
|
|
|
|
|
|
|
from service import views
|
|
|
|
|
|
|
|
|
|
@ -11,12 +14,12 @@ router.register('', views.PlacementPointViewSet)
|
|
|
|
|
|
|
|
|
|
schema_view = get_schema_view(
|
|
|
|
|
openapi.Info(
|
|
|
|
|
title="Snippets API",
|
|
|
|
|
title='Snippets API',
|
|
|
|
|
default_version='v1',
|
|
|
|
|
description="Test description",
|
|
|
|
|
terms_of_service="https://www.google.com/policies/terms/",
|
|
|
|
|
contact=openapi.Contact(email="contact@snippets.local"),
|
|
|
|
|
license=openapi.License(name="BSD License"),
|
|
|
|
|
description='Test description',
|
|
|
|
|
terms_of_service='https://www.google.com/policies/terms/',
|
|
|
|
|
contact=openapi.Contact(email='contact@snippets.local'),
|
|
|
|
|
license=openapi.License(name='BSD License'),
|
|
|
|
|
),
|
|
|
|
|
url='https://postamates.spatiality.website/',
|
|
|
|
|
public=True,
|
|
|
|
|
|