-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
118 lines (115 loc) · 2.74 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
module.exports = {
mySidebar: [{
type: "doc",
id: "intro",
label: "Introduction",
},
{
type: "category",
label: "Tutorials",
items: [
"user/about",
],
},
{
type: "category",
label: "How Tos",
items: [
"user/about",
],
},
{
type: "category",
label: "Concepts",
items: [
"bo/index-bo",
"auth/index-auth",
],
},
{
type: 'category',
label: 'API Specifications',
// collapsible: true,
// collapsed: false,
items: [
{
type: "category",
label: "Users Management",
items: [
"user/about",
"user/creation",
"user/management",
"user/investor",
"user/issuer",
],
},
{
type: "category",
label: "Markets Management",
items: [
"market/index-create",
"market/creation",
"market/management",
],
},
{
type: "category",
label: "Assets Management",
items: [
"asset/about",
"asset/management",
"asset/collection-management",
],
},
{
type: "category",
label: "Operations Management",
items: [
"operation/about",
"operation/management",
],
},
{
type: "category",
label: "Wallet Management",
items: [
"wallet/about",
"wallet/management",
],
},
{
type: "category",
label: "Compliance Management",
items: [
"compliance/index-compliance",
"compliance/kyc-aml",
"compliance/payment-api",
],
},
{
type: "category",
label: "Drop Management",
items: [
"drop/about",
"drop/management",
],
},
],
},
{
type: "doc",
label: "Glossary",
id: "glossary",
},
{
type: "doc",
id: "faq",
label: "FAQ",
},
{
type: "doc",
id: "standards",
label: "HTTP Standards",
},
],
};