From 898d6a61567b1561cea8312dca9425237f16db94 Mon Sep 17 00:00:00 2001 From: Fred Dixon Date: Tue, 10 Oct 2023 05:11:25 -0400 Subject: [PATCH] Add support documentation --- docs/docusaurus.config.js | 1 + docs/sidebars.js | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index b79ecceec7..b284b55276 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -65,6 +65,7 @@ const config = { {to: '/administration/install', label: 'Administration', position: 'left'}, {to: '/greenlight/v3/install', label: 'Greenlight', position: 'left'}, {to: '/new-features', label: 'New Features', position: 'left'}, + {to: '/support/getting-help', label: 'support', position: 'left'}, { type: 'docsVersionDropdown', position: 'right', diff --git a/docs/sidebars.js b/docs/sidebars.js index 6f3d6b42cb..0dd20b03b5 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -68,6 +68,21 @@ const sidebars = { }, } ], + support: [ + { + label: 'Support', + type: 'category', + items: [ + { + type: 'autogenerated', + dirName: 'support', + }, + ], + link: { + type: 'doc', + id: 'support/getting-help', + }, + } }; module.exports = sidebars;