mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 09:54:00 +00:00
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
|
|
export type Item = {
|
||
|
|
name: string;
|
||
|
|
slug: string;
|
||
|
|
description?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const demos: { name: string; items: Item[] }[] = [
|
||
|
|
{
|
||
|
|
name: 'Pages',
|
||
|
|
items: [
|
||
|
|
{
|
||
|
|
name: 'Login',
|
||
|
|
slug: 'login',
|
||
|
|
description: 'The entrypoint of the application',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'Password',
|
||
|
|
slug: 'password',
|
||
|
|
description: 'The page to request a users password',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'Set Password',
|
||
|
|
slug: 'password/set',
|
||
|
|
description: 'The page to set a users password',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'MFA',
|
||
|
|
slug: 'mfa',
|
||
|
|
description: 'The page to request a users mfa method',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'MFA',
|
||
|
|
slug: 'mfa/set',
|
||
|
|
description: 'The page to set a users mfa method',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'MFA Create',
|
||
|
|
slug: 'mfa/create',
|
||
|
|
description: 'The page to create a users mfa method',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'Passwordless',
|
||
|
|
slug: 'passwordless',
|
||
|
|
description: 'The page to login a user with his passwordless device',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'Passwordless Create',
|
||
|
|
slug: 'passwordless/create',
|
||
|
|
description: 'The page to add a users passwordless device',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
];
|