-
Notifications
You must be signed in to change notification settings - Fork 12
/
sidebars.js
122 lines (122 loc) · 3.29 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
119
120
121
122
module.exports = {
docs: [
{
type: "category",
label: "Introduction",
link: { type: "doc", id: "introduction/index" },
items: [
"introduction/keycloak",
"introduction/open-source",
"introduction/documentation",
],
},
{
type: "category",
label: "Self-service",
link: { type: "doc", id: "self-service/index" },
items: [
"self-service/deployments",
"self-service/dedicated-clusters",
"self-service/your-organization",
],
},
{
type: "category",
label: "Getting Started",
link: { type: "doc", id: "getting-started/index" },
items: [
"getting-started/configuration",
"getting-started/sample",
"getting-started/customizing-ui",
"getting-started/email",
"getting-started/launch-checklist",
],
},
{
type: "category",
label: "Securing Applications",
link: { type: "doc", id: "securing-applications/index" },
items: [
"securing-applications/django",
"securing-applications/springboot",
"securing-applications/javascript",
"securing-applications/react",
"securing-applications/next",
"securing-applications/vue",
"securing-applications/nuxt",
"securing-applications/remix",
"securing-applications/sveltekit",
"securing-applications/angular",
],
},
{
type: "category",
label: "API",
link: { type: "doc", id: "api/index" },
items: ["api/service-accounts", "api/authentication", "api/sdks"],
},
{
type: "category",
label: "Authentication",
link: { type: "doc", id: "authentication/index" },
items: [
"authentication/understanding-flows",
"authentication/username-password",
"authentication/social-login",
"authentication/magic-links",
"authentication/otps",
"authentication/webauthn",
"authentication/sso",
"authentication/complex-flows",
],
},
{
type: "category",
label: "SSO",
link: { type: "doc", id: "sso/index" },
items: ["sso/setup", "sso/wizards", "sso/sso-without-auth"],
},
{
type: "category",
label: "Organizations",
link: { type: "doc", id: "organizations/index" },
items: [
"organizations/attributes",
"organizations/membership",
"organizations/invitations",
"organizations/roles",
"organizations/identity-providers",
],
},
{
type: "category",
label: "Admin Portal",
link: { type: "doc", id: "admin-portal/index" },
items: ["admin-portal/portal-link"],
},
{
type: "category",
label: "Audit Logs",
link: { type: "doc", id: "audit-logs/index" },
items: [
"audit-logs/access",
"audit-logs/admin",
"audit-logs/system",
"audit-logs/api",
"audit-logs/webhooks",
],
},
{
type: "category",
label: "User Migration",
link: { type: "doc", id: "user-migration/index" },
items: ["user-migration/api"],
},
{
type: "category",
label: "Hosting",
link: { type: "doc", id: "hosting/index" },
items: ["hosting/kubernetes", "hosting/connect"],
},
],
};