Skip to content

Commit

Permalink
Add missing APIs to documentation menu items (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
lubomirw authored Nov 28, 2024
1 parent 9c2bd3b commit a4c98d2
Showing 1 changed file with 41 additions and 6 deletions.
47 changes: 41 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ const config = {
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-acme.yaml',
route: '/api/core-acme/',
},
{
id: 'core-approval',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-approval.yaml',
route: '/api/core-approval/',
},
{
id: 'core-auth',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-auth.yaml',
Expand Down Expand Up @@ -148,9 +153,9 @@ const config = {
route: '/api/core-cryptographic-operations/',
},
{
id: 'core-custom-attributes',
id: 'core-attribute',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-attribute.yaml',
route: '/api/core-custom-attributes/',
route: '/api/core-attribute/',
},
{
id: 'core-discovery',
Expand Down Expand Up @@ -202,6 +207,11 @@ const config = {
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-scep.yaml',
route: '/api/core-scep/',
},
{
id: 'core-scheduler',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-scheduler.yaml',
route: '/api/core-scheduler/',
},
{
id: 'core-token',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-token.yaml',
Expand All @@ -212,6 +222,11 @@ const config = {
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-token-profile.yaml',
route: '/api/core-token-profile/',
},
{
id: 'core-workflows',
spec: 'https://api.czertainly.com/'+apiVersion+'/doc-openapi-core-workflows.yaml',
route: '/api/core-workflows/',
},


{
Expand Down Expand Up @@ -322,6 +337,14 @@ const config = {
label: 'ACME',
to: '/api/core-acme/',
},
{
label: 'Approval',
to: '/api/core-approval/',
},
{
label: 'Attribute',
to: '/api/core-attribute/',
},
{
label: 'Auth',
to: '/api/core-auth/',
Expand All @@ -338,6 +361,10 @@ const config = {
label: 'Client Operations',
to: '/api/core-client-operations/',
},
{
label: 'CMP',
to: '/api/core-cmp/',
},
{
label: 'Compliance Profile',
to: '/api/core-compliance-profile/',
Expand All @@ -354,10 +381,6 @@ const config = {
label: 'Cryptographic Operations',
to: '/api/core-cryptographic-operations/',
},
{
label: 'Custom Attributes',
to: '/api/core-custom-attributes/',
},
{
label: 'Discovery',
to: '/api/core-discovery/',
Expand Down Expand Up @@ -398,6 +421,10 @@ const config = {
label: 'SCEP',
to: '/api/core-scep/',
},
{
label: 'Scheduler',
to: '/api/core-scheduler/',
},
{
label: 'Token',
to: '/api/core-token/',
Expand All @@ -406,6 +433,10 @@ const config = {
label: 'Token Profile',
to: '/api/core-token-profile/',
},
{
label: 'Workflows',
to: '/api/core-workflows/',
},
],
},
{
Expand Down Expand Up @@ -454,6 +485,10 @@ const config = {
label: 'ACME',
to: '/api/protocol-acme/',
},
{
label: 'CMP',
to: '/api/protocol-cmp/',
},
{
label: 'SCEP',
to: '/api/protocol-scep/',
Expand Down

0 comments on commit a4c98d2

Please sign in to comment.