Skip to content
Snippets Groups Projects
Commit 429f1065 authored by sks444's avatar sks444
Browse files

Change api doc path to api/v1/doc

parent aaafdeed
No related branches found
No related tags found
No related merge requests found
......@@ -7,22 +7,22 @@ from .v1 import urls as v1_urls
app_name = 'api'
schema_url_patterns = [
schema_url_patterns_v1 = [
path('api/v1/', include(v1_urls)),
]
schema_view = get_schema_view(
schema_view_v1 = get_schema_view(
openapi.Info(
title="Hypha API",
default_version='v1',
description="Hypha APIs specification",
),
public=False,
patterns=schema_url_patterns,
patterns=schema_url_patterns_v1,
permission_classes=(permissions.AllowAny,),
)
urlpatterns = [
path('v1/', include(v1_urls)),
path('doc/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
path('v1/doc/', schema_view_v1.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment