docs: documentation for v1.18 (#5652)

* docs: documentation for v.17.5

* fix links

* updated version number
This commit is contained in:
Shahed Nasser
2023-11-21 08:57:11 +00:00
committed by GitHub
parent adc60e519c
commit 9c7f95c3d5
36 changed files with 1499 additions and 1336 deletions
+37 -4
View File
@@ -12,6 +12,7 @@
* - To add a sidebar title, add in customProps sidebar_is_title: true
* - To add a group headline, add in customProps sidebar_is_group_headline: true
* - To add a coming soon link (with a badge), add in customProps sidebar_is_soon: true
* - To add a badge, add in customProps sidebar_badge with its value being the props to pass to the Badge component.
*/
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
@@ -1572,9 +1573,25 @@ module.exports = {
label: "Create an Event Module",
},
{
type: "doc",
id: "development/events/create-subscriber",
type: "category",
link: {
type: "doc",
id: "development/events/create-subscriber",
},
label: "Create a Subscriber",
items: [
{
type: "doc",
id: "development/events/create-subscriber-deprecated",
label: "Create a Subscriber",
customProps: {
sidebar_badge: {
variant: "orange",
children: "Deprecated",
},
},
},
],
},
],
},
@@ -1618,9 +1635,25 @@ module.exports = {
},
},
{
type: "doc",
id: "development/scheduled-jobs/create",
type: "category",
link: {
type: "doc",
id: "development/scheduled-jobs/create",
},
label: "Create a Scheduled Job",
items: [
{
type: "doc",
id: "development/scheduled-jobs/create-deprecated",
label: "Create a Scheduled Job",
customProps: {
sidebar_badge: {
variant: "orange",
children: "Deprecated",
},
},
},
],
},
],
},