-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebarAssistant.js
145 lines (144 loc) · 3.77 KB
/
sidebarAssistant.js
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
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
assistant: [
{
type: 'category',
label: 'Introduction',
link: {
type: 'doc',
id: 'introduction/index',
},
items: [
"introduction/faq",
],
},
{
type: 'category',
label: 'Getting Started',
link: {
type: 'generated-index',
title: 'Getting Started',
slug: '/getting-started/',
},
items: [
"getting-started/what-can-i-do",
"getting-started/create-account",
"getting-started/install",
"getting-started/connect",
],
},
{
type: 'category',
label: 'Assistant Plugin',
link: {
type: 'generated-index',
title: 'Assistant Plugin',
slug: '/plugin/',
},
items: [
"plugin/launch-assistant",
{
type: 'category',
label: 'Apps',
link: {
type: 'generated-index',
title: 'Apps',
slug: '/plugin/apps/',
},
items: [
"plugin/apps/home",
"plugin/apps/code",
"plugin/apps/comments",
"plugin/apps/community",
"plugin/apps/content",
"plugin/apps/media",
"plugin/apps/updates",
"plugin/apps/libraries",
],
},
"plugin/user-profile",
"plugin/app-settings",
"plugin/limit-access",
],
},
{
type: 'category',
label: 'Assistant Pro Cloud',
link: {
type: 'generated-index',
title: 'Assistant Pro Cloud',
slug: '/cloud/',
},
items: [
{
type: 'category',
label: 'Account & Settings',
link: {
type: 'doc',
id: 'cloud/account-settings/index',
},
items: [
"cloud/account-settings/profile-settings",
"cloud/account-settings/change-password",
"cloud/account-settings/seller",
"cloud/account-settings/transfer-ownership",
"cloud/account-settings/delete-account",
],
},
{
type: 'category',
label: 'Libraries',
link: {
type: 'doc',
id: 'cloud/libraries/index',
},
items: [
"cloud/libraries/create-library",
"cloud/libraries/add-creative-assets",
"cloud/libraries/view-edit-assets",
"cloud/libraries/share-library",
"cloud/libraries/delete-library",
],
},
{
type: 'category',
label: 'Collections',
link: {
type: 'generated-index',
title: 'Collections',
slug: '/cloud/collections/',
description: 'Overview of Library Collections and how to create collections, assign assets and sort by collection.'
},
items: [
"cloud/collections/create-collection",
"cloud/collections/assign-collections",
"cloud/collections/sort-collections",
],
},
"cloud/teams",
"cloud/community",
{
type: 'category',
label: 'Integrations',
link: {
type: 'generated-index',
title: 'Integrations',
slug: '/cloud/integrations/',
},
items: [
"cloud/integrations/beaver-builder",
"cloud/integrations/gutenberg",
"cloud/integrations/third-party-builders",
"cloud/integrations/woocommerce",
],
},
],
},
"known-incompatibilities",
],
};