-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
77 lines (74 loc) · 2.15 KB
/
Copy pathsidebars.js
File metadata and controls
77 lines (74 loc) · 2.15 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
const sidebars = {
docs: [
{
type: "category",
label: "Functional",
items: [
"user/overview",
"user/install-and-run",
"user/setup-and-sync",
// "user/features",
// "user/all-features",
"user/troubleshooting",
{
type: "category",
label: "User Manual",
// Uncomment the line below if 'user/user-manual' is an actual Markdown file you want to link to when clicking the category title
// link: { type: 'doc', id: 'user/user-manual' },
items: [
"user/user-manual/introduction",
"user/user-manual/dashboard",
"user/user-manual/kebab-menu",
"user/user-manual/about-us",
"user/user-manual/settings",
"user/user-manual/projects",
"user/user-manual/project-updates",
"user/user-manual/all-tasks",
"user/user-manual/my-tasks",
"user/user-manual/activities",
"user/user-manual/timesheets",
"user/user-manual/NL-Translation",
"user/user-manual/draftrich"
],
}
]
},
{
type: "category",
label: "Technical",
items: [
"technical/architecture",
"technical/repository-organization",
{
type: "category",
label: "Module Implementations",
items: [
"technical/activities",
"technical/projects",
"technical/tasks",
"technical/timesheets",
"technical/dashboard",
"technical/sync-settings",
"technical/ui-ux-navigation",
"technical/notifications",
"technical/onboarding",
"technical/profiles"
]
},
"technical/build-and-packaging",
"technical/release-process"
]
},
{
type: "category",
label: "Contributor",
items: [
"contributing/getting-started",
"contributing/pull-request-guidelines",
"contributing/documentation-governance",
"contributing/app-translation-guide"
]
}
]
};
module.exports = sidebars;