From d6c6aea1797596aaf45cbede72fd53c24cbfe6e8 Mon Sep 17 00:00:00 2001 From: Jeff Malnick Date: Tue, 6 Oct 2020 13:38:21 -0700 Subject: [PATCH] docs: move standards into their own sub-section (#559) --- .../docs/concepts/{ => standards}/api-standards.mdx | 0 .../docs/concepts/{ => standards}/cli-standards.mdx | 0 website/content/docs/concepts/standards/index.mdx | 11 +++++++++++ website/data/docs-navigation.js | 11 ++++++++--- 4 files changed, 19 insertions(+), 3 deletions(-) rename website/content/docs/concepts/{ => standards}/api-standards.mdx (100%) rename website/content/docs/concepts/{ => standards}/cli-standards.mdx (100%) create mode 100644 website/content/docs/concepts/standards/index.mdx diff --git a/website/content/docs/concepts/api-standards.mdx b/website/content/docs/concepts/standards/api-standards.mdx similarity index 100% rename from website/content/docs/concepts/api-standards.mdx rename to website/content/docs/concepts/standards/api-standards.mdx diff --git a/website/content/docs/concepts/cli-standards.mdx b/website/content/docs/concepts/standards/cli-standards.mdx similarity index 100% rename from website/content/docs/concepts/cli-standards.mdx rename to website/content/docs/concepts/standards/cli-standards.mdx diff --git a/website/content/docs/concepts/standards/index.mdx b/website/content/docs/concepts/standards/index.mdx new file mode 100644 index 0000000000..b9df5bae86 --- /dev/null +++ b/website/content/docs/concepts/standards/index.mdx @@ -0,0 +1,11 @@ +--- +layout: docs +page_title: Concepts - Standards +sidebar_title: API Standards +description: |- + An introduction to Boundary API standards. +--- + +# Boundary API Standards + +This section covers our API standards including command line, and other API interactions. diff --git a/website/data/docs-navigation.js b/website/data/docs-navigation.js index c8c305561d..cf0fc14b80 100644 --- a/website/data/docs-navigation.js +++ b/website/data/docs-navigation.js @@ -33,9 +33,6 @@ export default [ { category: 'concepts', content: [ - 'api-standards', - 'cli-standards', - 'permissions', 'security-model', { category: 'domain-model', @@ -58,6 +55,14 @@ export default [ 'users', ], }, + { + category: 'standards', + content: [ + 'api-standards', + 'cli-standards', + ] + }, + 'permissions', ], }, '---',