parent
3b56d4e926
commit
dde35b954d
@ -1,15 +1,31 @@
|
|||||||
from django.urls import path
|
from django.contrib import admin
|
||||||
from django.conf.urls import url
|
from django.urls import path, include, re_path
|
||||||
from rest_framework import routers
|
from django.conf.urls.static import static
|
||||||
from . import views
|
from django.conf import settings
|
||||||
|
|
||||||
app_name = 'postamates'
|
from rest_framework import permissions
|
||||||
router = routers.DefaultRouter()
|
from drf_yasg.views import get_schema_view
|
||||||
|
from drf_yasg import openapi
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = router.urls
|
schema_view = get_schema_view(
|
||||||
|
openapi.Info(
|
||||||
|
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"),
|
||||||
|
),
|
||||||
|
public=True,
|
||||||
|
permission_classes=[permissions.AllowAny],
|
||||||
|
)
|
||||||
|
|
||||||
urlpatterns += [
|
urlpatterns = [
|
||||||
path('ao_and_rayons/', views.ao_and_rayons.as_view(), name='ao_and_rayons'),
|
re_path(r'^swagger(?P<format>\.json|\.yaml)$', schema_view.without_ui(cache_timeout=0), name='schema-json'),
|
||||||
path('raschet/', views.raschet.as_view(), name='ao_and_rayons'),
|
re_path(r'^swagger/$', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
|
||||||
|
# re_path(r'^redoc/$', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
|
||||||
|
path('admin/', admin.site.urls),
|
||||||
|
path('api/', include('service.urls')),
|
||||||
]
|
]
|
||||||
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||||
|
|||||||
Loading…
Reference in new issue