-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
101 lines (99 loc) · 1.83 KB
/
sidebars.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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
sidebar: [
'README',
{
type: 'category',
label: 'Types',
link: {
type: 'doc',
id: 'types/README',
},
items: [
{
type: 'category',
label: 'Primitive Type',
link: {
type: 'doc',
id: 'types/primitive/README',
},
items: [
'types/primitive/boolean',
'types/primitive/integer',
'types/primitive/double',
'types/primitive/string',
],
},
{
type: 'category',
label: 'Semantic Type',
link: {
type: 'doc',
id: 'types/semantic/README',
},
items: [
'types/semantic/uuid',
'types/semantic/token',
'types/semantic/date',
'types/semantic/image',
'types/semantic/category',
],
},
{
type: 'category',
label: 'Schema Type',
link: {
type: 'doc',
id: 'types/schema/README',
},
items: [
'types/schema/user',
'types/schema/user-init',
'types/schema/post',
'types/schema/post-init',
'types/schema/post-preview',
],
},
{
type: 'category',
label: 'Error',
link: {
type: 'doc',
id: 'types/error/README',
},
items: [],
},
],
},
{
API: [
{
type: 'category',
label: 'auth',
link: {
type: 'doc',
id: 'api/auth/README',
},
items: ['api/auth/signup', 'api/auth/signin'],
},
{
users: [
'api/users/get-users',
'api/users/get-user',
'api/users/edit-user',
'api/users/delete-user',
],
posts: [
'api/posts/get-posts',
'api/posts/get-post',
'api/posts/create-post',
'api/posts/edit-post',
'api/posts/delete-post',
],
},
],
},
],
}
module.exports = sidebars