-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsidebars.ts
More file actions
39 lines (37 loc) · 852 Bytes
/
sidebars.ts
File metadata and controls
39 lines (37 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
import siteConfig from "./site-config";
const sidebars: SidebarsConfig = {
docs: [
"intro",
"get-started",
{
type: "category",
label: siteConfig.phrases["%EMBEDDED_WORKFLOW_BUILDER%"],
collapsed: false,
items: [
"building",
"branching",
"looping",
"triggering",
"testing",
"enabling",
"oauth2",
"error-handling",
"http-requests",
"custom-code",
"runner-environment",
],
},
{
type: "category",
label: "Connectors",
collapsed: true,
items: [{ type: "autogenerated", dirName: "connectors" }],
link: {
type: "generated-index",
title: "Connectors",
},
},
],
};
export default sidebars;