aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorlapentafd <francesco.lapenta@est.tech>2023-04-14 10:05:26 +0100
committerFrancesco Davide Lapenta <francesco.lapenta@est.tech>2023-04-14 09:31:58 +0000
commitfb7389919fb7e0e038267773c102f1cad4b9df71 (patch)
tree4d81abb31811f83e456fd6f2e7f7f4a97e6f35ea /docs/conf.py
parentbf7c499ac2bc5bc6246db96b0fc8314d4ed091e1 (diff)
Fix offeredapi documentation
Deleted repeted lines. Fixed missing body in Post requests in the generated swagger pages, added OpenApi 3 support. Issue-ID: POLICY-4581 Change-Id: Id7558efeb210457e4e9c79df5e6e155d1525d3d4 Signed-off-by: lapentafd <francesco.lapenta@est.tech>
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 367166bf..a43b3055 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,13 +27,14 @@ extensions = [
'sphinxcontrib.redoc'
]
+redoc_uri = 'https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js'
+
redoc = [
{
'name': 'Policy API',
'page': 'api/local-swagger',
'spec': 'https://raw.githubusercontent.com/onap/policy-api/master/main/src/main/resources/openapi/openapi.yaml',
'opts': {
- 'lazy-rendering': True,
'suppress-warnings': True,
'hide-hostname': True,
}
@@ -43,7 +44,6 @@ redoc = [
'page': 'pap/local-swagger',
'spec': 'https://raw.githubusercontent.com/onap/policy-pap/master/main/src/main/resources/openapi/openapi.yaml',
'opts': {
- 'lazy-rendering': False,
'suppress-warnings': True,
'hide-hostname': True,
}
@@ -53,7 +53,15 @@ redoc = [
'page': 'xacml/local-swagger',
'spec': 'https://raw.githubusercontent.com/onap/policy-xacml-pdp/master/main/src/main/resources/openapi/openapi.yaml',
'opts': {
- 'lazy-rendering': False,
+ 'suppress-warnings': True,
+ 'hide-hostname': True,
+ }
+ },
+ {
+ 'name': 'Policy DROOLS',
+ 'page': 'drools/local-swagger',
+ 'spec': 'https://raw.githubusercontent.com/onap/policy-drools-pdp/master/feature-healthcheck/src/main/resources/openapi/openapi.yaml',
+ 'opts': {
'suppress-warnings': True,
'hide-hostname': True,
}
@@ -63,7 +71,6 @@ redoc = [
'page': 'clamp/acm/api-protocol/local-swagger',
'spec': 'https://raw.githubusercontent.com/onap/policy-clamp/master/runtime-acm/src/main/resources/openapi/openapi.yaml',
'opts': {
- 'lazy-rendering': False,
'suppress-warnings': True,
'hide-hostname': True,
}