-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
419 lines (411 loc) · 19.7 KB
/
Copy pathsidebars.ts
File metadata and controls
419 lines (411 loc) · 19.7 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
// @ts-ignore
import type { SidebarConfig } from '@docusaurus/plugin-content-docs/src/sidebars/types';
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
const standardLinks: SidebarConfig = [
{
type: 'link',
label: 'ShiftControl website',
href: 'https://shiftcontrol.io',
},
{
type: 'link',
label: 'Release Notes',
href: 'https://journey.shiftcontrol.io',
},
{
type: 'link',
label: 'Log in to ShiftControl',
href: 'https://app.shiftcontrol.io',
},
{
type: 'link',
label: 'Support',
href: 'mailto:support@shiftcontrol.io',
},
];
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
mainSideBar: [
...standardLinks,
{
type: 'category',
label: 'Get Started',
items: [
'introduction',
'getting-started/quickstart',
'getting-started/Onboarding',
],
},
{
type: 'category',
collapsed: false,
label: 'Using ShiftControl (Admins)',
items: [
{
type: 'category',
label: 'Dashboards',
link: {
type: 'generated-index',
title: 'Dashboards',
description: 'Monitor OAuth permissions, track SaaS spending, and spot security risks across your organization.',
slug: '/using-shiftcontrol/Dashboards',
keywords: ['dashboards'],
},
items: [
'using-shiftcontrol/Dashboards/app-permissions',
'using-shiftcontrol/Dashboards/app-spend',
],
},
'using-shiftcontrol/using-the-command-bar',
'using-shiftcontrol/task-management',
{
type: 'category',
label: 'Users',
link: {
type: 'generated-index',
title: 'Users',
description: 'Add, edit, and manage every person in your organization. Control access, onboard new hires, and offboard departing employees.',
slug: '/using-shiftcontrol/Users',
keywords: ['users','user-management'],
},
items: [
'using-shiftcontrol/Users/User-management',
'using-shiftcontrol/Users/Viewing-a-user',
'using-shiftcontrol/Users/Adding-a-user',
'using-shiftcontrol/Users/Editing-a-user',
],
},
{
type: 'category',
label: 'Groups',
link: {
type: 'generated-index',
title: 'Groups',
description: 'Organize users into groups that automatically control app access, email distribution, and security policies.',
slug: '/using-shiftcontrol/Groups',
keywords: ['groups','group-management'],
},
items: [
'using-shiftcontrol/Groups/Group-management',
'using-shiftcontrol/Groups/Viewing-a-group',
'using-shiftcontrol/Groups/Adding-a-group',
'using-shiftcontrol/Groups/Editing-a-group',
],
},
{
type: 'category',
label: 'Apps',
link: {
type: 'generated-index',
title: 'Apps',
description: 'Manage your SaaS applications, discover shadow IT, control SSO, and track software costs across your org.',
slug: '/using-shiftcontrol/Apps',
keywords: ['apps','app-management'],
},
items: [
'using-shiftcontrol/Apps/App-management',
'using-shiftcontrol/Apps/Viewing-an-app',
'using-shiftcontrol/Apps/Adding-an-app',
'using-shiftcontrol/Apps/Editing-an-app',
'using-shiftcontrol/Apps/App-discovery',
'using-shiftcontrol/Apps/Blocking-apps',
],
},
{
type: 'category',
label: 'Devices',
link: {
type: 'generated-index',
title: 'Devices',
description: 'See and manage every JumpCloud-managed device — live inventory, encryption coverage, per-user devices, and offboarding actions. Requires JumpCloud.',
slug: '/using-shiftcontrol/Devices',
keywords: ['devices','device-management','jumpcloud','mdm'],
},
items: [
'using-shiftcontrol/Devices/Device-management',
'using-shiftcontrol/Devices/Viewing-devices',
'using-shiftcontrol/Devices/Needs-attention',
'using-shiftcontrol/Devices/Device-health',
'using-shiftcontrol/Devices/Device-details',
'using-shiftcontrol/Devices/Device-actions',
],
},
{
type: 'category',
label: 'Digital Cards',
link: {
type: 'generated-index',
title: 'Digital Cards',
description: 'Company-managed digital business cards — design one branded template, let employees activate their own card, and retire cards automatically when people leave.',
slug: '/using-shiftcontrol/DigitalCards',
keywords: ['digital cards','business cards','vcard','qr code'],
},
items: [
'using-shiftcontrol/DigitalCards/Digital-cards-overview',
'using-shiftcontrol/DigitalCards/Card-template',
'using-shiftcontrol/DigitalCards/Card-fields',
'using-shiftcontrol/DigitalCards/Card-offboarding',
'using-shiftcontrol/DigitalCards/Card-domain',
'using-shiftcontrol/DigitalCards/Managing-a-users-card',
],
},
{
type: 'category',
label: 'Reports',
link: {
type: 'generated-index',
title: 'Reports',
description: 'Generate app assignment reports, audit access, and export data for compliance reviews.',
slug: '/using-shiftcontrol/Reports',
keywords: ['reports','reporting' ],
},
items: [
'using-shiftcontrol/Reports/App-assignment-reports',
],
},
{
type: 'category',
label: 'Settings',
link: {
type: 'generated-index',
title: 'Settings',
description: 'Configure your organization, manage directories, set up connectors, and control admin access.',
slug: '/using-shiftcontrol/Settings',
keywords: ['settings'],
},
items: [
'using-shiftcontrol/Settings/settings-overview',
{
type: 'category',
label: 'Personal',
link: {
type: 'generated-index',
title: 'Personal Settings',
description: 'Your account profile, theme preferences, and personal API keys.',
slug: '/using-shiftcontrol/Settings/personal',
keywords: ['personal','settings'],
},
items: [
'using-shiftcontrol/Settings/account-settings',
'using-shiftcontrol/Settings/appearance',
'using-shiftcontrol/Settings/user-api-keys',
],
},
{
type: 'category',
label: 'Organization',
link: {
type: 'generated-index',
title: 'Organization Settings',
description: 'Organization details, departments, locations, group tags, user roles, and API keys.',
slug: '/using-shiftcontrol/Settings/organization',
keywords: ['organization','settings'],
},
items: [
'using-shiftcontrol/Settings/org-details',
'using-shiftcontrol/Settings/group-tags',
'using-shiftcontrol/Settings/user-roles',
'using-shiftcontrol/Settings/org-api-keys',
'using-shiftcontrol/Settings/departments',
'using-shiftcontrol/Settings/locations',
],
},
{
type: 'category',
label: 'Connectors',
link: {
type: 'generated-index',
title: 'Connectors',
description: 'Connect identity providers (JumpCloud, Google Workspace) and HRIS systems to sync your organization data.',
slug: '/using-shiftcontrol/Settings/connectors',
keywords: ['connectors'],
},
items: [
'using-shiftcontrol/Integrations/Connector-management',
'using-shiftcontrol/Settings/directories',
'using-shiftcontrol/Settings/app-connectors',
'using-shiftcontrol/Integrations/Managing-connector-authorization',
{
type: 'category',
label: 'Connector Guides',
link: {
type: 'generated-index',
title: 'Connector Guides',
description: 'Step-by-step guides to help you set up popular connectors with ShiftControl.',
slug: '/using-shiftcontrol/Integrations/connector-guides',
keywords: ['connector','guides'],
},
items: [
{
type: 'category',
label: 'HRIS',
link: {
type: 'generated-index',
title: 'HRIS Connector Guides',
description: 'Step-by-step guides to help you set up popular HRIS connectors with ShiftControl.',
slug: '/using-shiftcontrol/Integrations/connector-guides/hris',
keywords: ['connector','guides','hris'],
},
items: [
'using-shiftcontrol/Integrations/guides/BambooHR',
'using-shiftcontrol/Integrations/guides/Box',
'using-shiftcontrol/Integrations/guides/Deel',
'using-shiftcontrol/Integrations/guides/DreamTeam',
'using-shiftcontrol/Integrations/guides/HiBob',
'using-shiftcontrol/Integrations/guides/OmniHR',
],
},
'using-shiftcontrol/Integrations/guides/Google-Workspace',
'using-shiftcontrol/Integrations/guides/Google-Workspace-App-Authorization',
'using-shiftcontrol/Integrations/guides/JumpCloud',
'using-shiftcontrol/Integrations/guides/Slack',
],
},
],
},
{
type: 'category',
label: 'JumpCloud',
items: [
'using-shiftcontrol/Settings/jumpcloud-admins',
],
},
{
type: 'category',
label: 'Google Workspace',
items: [
'using-shiftcontrol/Settings/google-admins',
],
},
],
},
'using-shiftcontrol/API/ShiftControl-api',
{
type: 'category',
label: 'JumpCloud',
link: {
type: 'generated-index',
title: 'JumpCloud',
description: 'Configure JumpCloud as your identity provider, set up Google Workspace as an IdP, and manage the JumpCloud integration.',
slug: '/using-shiftcontrol/JumpCloud',
keywords: ['jumpcloud'],
},
items: [
'using-shiftcontrol/JumpCloud/Use-Google-Workspace-as-an-IdP',
{
type: 'category',
label: 'Guided Setup (JumpCloud customers)',
link: {
type: 'generated-index',
title: 'Guided Setup (JumpCloud customers)',
description: 'The white-glove onboarding path for organizations setting up ShiftControl on JumpCloud — what to prepare, what we cover together, and what to do after.',
slug: '/using-shiftcontrol/JumpCloud/Guided-setup',
keywords: ['onboarding', 'guided setup', 'JumpCloud'],
},
items: [
'using-shiftcontrol/JumpCloud/Guided-setup/Onboarding-intro',
'using-shiftcontrol/JumpCloud/Guided-setup/Before-onboarding',
'using-shiftcontrol/JumpCloud/Guided-setup/During-onboarding',
'using-shiftcontrol/JumpCloud/Guided-setup/After-onboarding',
],
},
],
},
],
},
{
type: 'category',
label: 'AI Assistants',
link: {
type: 'generated-index',
title: 'AI Assistants',
description: 'Connect ShiftControl to Claude, Cursor, ChatGPT, and other AI assistants via the MCP server. Run pre-built Skills for common SaaS-management workflows.',
slug: '/ai-assistants',
keywords: ['ai', 'mcp', 'claude', 'cursor', 'chatgpt', 'skills'],
},
items: [
'ai-assistants/Introduction',
'ai-assistants/Connect-your-ai-tool',
'ai-assistants/Skills',
],
},
{
type: 'category',
label: 'Partnerships',
link: {
type: 'generated-index',
title: 'Partnerships',
description: 'Security partnerships and Google Workspace reseller services to complement your ShiftControl setup.',
slug: '/using-shiftcontrol/Partnerships',
keywords: ['jumpcloud'],
},
items: [
'partnerships/Blackpanda-ir1',
{
type: 'category',
label: 'Google Workspace Reseller',
items: [
'partnerships/Google-Workspace-Reseller/Google-Workspace-billing-transfer',
'partnerships/Google-Workspace-Reseller/Managing-Google-Workspace-licenses'
],
},
],
},
],
appGuidesSideBar: [
...standardLinks,
{
type: 'category',
label: 'App Guides',
items: [
'app-guides/Atlassian',
'app-guides/AWS',
'app-guides/Google-Workspace',
'app-guides/Microsoft-Azure',
'app-guides/Slack',
],
},
],
employeeGuideSideBar: [
...standardLinks,
{
type: 'category',
label: 'Employee Guide',
collapsed: false,
items: [
'employee-guide/what-is-shiftcontrol',
{
type: 'category',
label: 'Employee Portal',
link: {
type: 'generated-index',
title: 'Employee Portal',
description: 'Your app dashboard, org chart, and account security — everything you see as an employee.',
slug: '/employee-guide/employee-portal',
keywords: ['employee', 'portal', 'apps'],
},
items: [
'employee-guide/employee-portal/your-apps',
'employee-guide/employee-portal/org-chart',
'employee-guide/employee-portal/app-permissions',
'employee-guide/employee-portal/my-devices',
'employee-guide/employee-portal/my-card',
'employee-guide/employee-portal/account-security',
],
},
'employee-guide/onboarding',
],
},
],
};
export default sidebars;