diff options
author | John Keeney <john.keeney@est.tech> | 2024-09-16 09:56:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-09-16 09:56:26 +0000 |
commit | 93fe8c0693a14d0bf616f7370828b89fe1556578 (patch) | |
tree | 03a849cf7da3c62bcb30443343b47fb9e97a3055 /docs/conf.py | |
parent | 5bcd20b048ac7c71863a6e6ad22bb4634aea775e (diff) | |
parent | 1203af8bd477759cec620de410833e1366aa39f7 (diff) |
Merge "Update HTML API docs for v3 API"
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index 460f86d1..196f094e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,6 +58,12 @@ redoc = [ 'embed': True, }, { + 'name': 'PMS API V3', + 'page': 'offeredapis/pms-api-v3', + 'spec': './offeredapis/swagger/pms-api-v3.json', + 'embed': True, + }, + { 'name': 'A1 ADAPTER API', 'page': 'offeredapis/a1-adapter-api', 'spec': './offeredapis/swagger/a1-adapter-api.json', @@ -77,7 +83,7 @@ spelling_word_list_filename='spelling_wordlist.txt' spelling_lang = "en_GB" html_extra_path = [ - 'offeredapis/openapitoolgen/offeredapis/pms-api' + 'offeredapis/openapitoolgen' ] # @@ -91,7 +97,8 @@ def setup(app): app.add_css_file("css/ribbon.css") linkcheck_ignore = [ - r'http://localhost:\d+/', - './a1-adapter-api.html', #Generated file that doesn't exist at link check. - './pms-api.html' #Generated file that doesn't exist at link check. + r'http://localhost:\d+/', + './a1-adapter-api.html', #Generated file that doesn't exist at link check. + './pms-api.html', #Generated file that doesn't exist at link check. + './pms-api-v3.html' #Generated file that doesn't exist at link check. ] |