forked from maester365/maester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
109 lines (107 loc) · 2.85 KB
/
sidebars.js
File metadata and controls
109 lines (107 loc) · 2.85 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
siteSidebar: [
"intro",
//"installation",
{
type: "category",
label: "⚙️ Configure Maester",
collapsed: true,
collapsible: true,
link: {type: 'doc', id: 'configuration/overview'},
items: [{ type: "autogenerated", dirName: "configuration" }],
},
{
type: "category",
label: "🔗 Connect-Maester",
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "connect-maester" }],
},
"export-results",
{
type: "category",
label: "👁️🗨️ Monitoring with Maester",
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "monitoring" }],
},
{
type: "category",
label: "📮 Maester Alerts",
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "alerts" }],
},
"watch",
"contributing",
"faq",
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "category",
collapsed: false,
label: "Tests Overview",
link: {type: 'doc', id: 'tests/overview'},
items: [
{
type: "category",
label: "🔥 Maester",
link: {type: 'doc', id: 'tests/maester/overview'},
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "tests/maester" }],
},
{
type: "category",
label: "🛡️ Entra ID SCA",
link: {type: 'doc', id: 'tests/eidsca/overview'},
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "tests/eidsca" }],
},
{
type: "category",
label: "🦅 CISA",
link: {type: 'doc', id: 'tests/cisa/overview'},
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "tests/cisa" }],
},
'tests/cis/overview',
{
type: "html",
value: '<span class="sidebar-divider" />',
},
"ca-what-if",
{
type: "html",
value: '<span class="sidebar-divider" />',
},
"updating-tests",
{
type: "category",
label: "🛠️ Writing custom tests",
collapsed: true,
collapsible: true,
items: [{ type: "autogenerated", dirName: "writing-tests" }],
}
],
},
{
type: "html",
value: '<span class="sidebar-divider" />',
},
{
type: "category",
label: "Command Reference",
collapsed: true,
//className: "powershell",
items: [{ type: "autogenerated", dirName: "commands" }],
},
],
};
export default sidebars;