first base of project-changed apps: Herd-livestock-tag-log-elasticsearch-
This commit is contained in:
16
apps/core/swagger.py
Normal file
16
apps/core/swagger.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from rest_framework import permissions
|
||||
from drf_yasg.views import get_schema_view
|
||||
from drf_yasg import openapi
|
||||
|
||||
schema_view = get_schema_view(
|
||||
openapi.Info(
|
||||
title="RasadDam Api",
|
||||
default_version='v1',
|
||||
description="All Apis",
|
||||
terms_of_service="https://www.google.com/policies/terms/",
|
||||
contact=openapi.Contact(email="contact@myapi.local"),
|
||||
license=openapi.License(name="BSD License"),
|
||||
),
|
||||
public=True,
|
||||
permission_classes=[permissions.BasePermission, permissions.IsAuthenticated]
|
||||
)
|
||||
Reference in New Issue
Block a user