zitadel/docs/sidebars.js
Christian Jakob 324068f25a
fix: added user manual videos and description (#1581)
* added user manual videos and description

* feat(added manual and videos): manual and videos

* added selfregistration

* Update site/docs/use/00-user.md

Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>

* Update site/docs/use/00-user.md

Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>

* changed email verification and change email

* explained 2fa

* changed format

* changed video captions

* added admin create user

* updated screenshots

* added selfregister

* doc: api descriptions

* doc: user manual

* doc: user manual

* doc: user manual

Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
2021-04-23 06:54:13 +00:00

124 lines
3.1 KiB
JavaScript

module.exports = {
manuals: [
'manuals/introduction',
{
type: 'category',
label: 'User',
items: ['manuals/user-register', 'manuals/user-login', 'manuals/user-password', 'manuals/user-factors', 'manuals/user-email', 'manuals/user-phone', 'manuals/user-social-login', ],
collapsed: false,
},
{
type: 'category',
label: 'Administrator',
items: ['manuals/admin-managers'],
collapsed: false,
},
],
quickstarts: [
'quickstarts/introduction',
{
type: 'category',
label: 'Single Page Applications',
items: ['quickstarts/angular'],
collapsed: false,
},
{
type: 'category',
label: 'Backends',
items: ['quickstarts/go'],
},
{
type: 'category',
label: 'Identity Aware Proxy',
items: ['quickstarts/oauth2-proxy'],
collapsed: false,
}
],
guides: [
'guides/introduction',
{
type: 'category',
label: 'Get to know ZITADEL',
collapsed: false,
items: [
'guides/usage/get-started',
'guides/usage/organizations',
'guides/usage/projects',
'guides/usage/oauth-recommended-flows',
'guides/usage/serviceusers',
'guides/usage/access-zitadel-apis',
'guides/usage/identity-brokering',
],
},
{
type: 'category',
label: 'Installation',
collapsed: false,
items: [
{
type: 'category',
label: 'CAOS Managed',
collapsed: true,
items: [
'guides/installation/shared-cloud',
'guides/installation/managed-dedicated-instance'
],
},
{
type: 'category',
label: 'Self Managed',
collapsed: true,
items: [
'guides/installation/crd',
'guides/installation/gitops',
'guides/installation/orbos'
],
},
],
}
],
apis: [
'apis/introduction',
'apis/domains',
'apis/apis',
{
type: 'category',
label: 'Proto API Definition',
collapsed: false,
items: [
'apis/proto/auth',
'apis/proto/management',
'apis/proto/admin',
'apis/proto/org',
'apis/proto/user',
'apis/proto/app',
'apis/proto/policy',
'apis/proto/auth_n_key',
'apis/proto/change',
'apis/proto/idp',
'apis/proto/member',
'apis/proto/message',
'apis/proto/object',
'apis/proto/options',
],
},
{
type: 'category',
label: 'OpenID Connect & OAuth',
collapsed: false,
items: [
'apis/openidoauth/endpoints',
'apis/openidoauth/scopes',
'apis/openidoauth/claims',
'apis/openidoauth/authn-methods',
'apis/openidoauth/grant-types'
],
},
],
concepts: [
'concepts/introduction',
'concepts/architecture',
'concepts/principles',
]
};