50 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-04-03 20:16:38 +02:00
export const loginThemePageIds = [
"login.ftl",
"login-username.ftl",
"login-password.ftl",
"webauthn-authenticate.ftl",
2024-05-10 21:12:35 +02:00
"webauthn-register.ftl",
2023-04-03 20:16:38 +02:00
"register.ftl",
"info.ftl",
"error.ftl",
"login-reset-password.ftl",
"login-verify-email.ftl",
"terms.ftl",
"login-oauth2-device-verify-user-code.ftl",
"login-oauth-grant.ftl",
2023-04-03 20:16:38 +02:00
"login-otp.ftl",
"login-update-profile.ftl",
"login-update-password.ftl",
"login-idp-link-confirm.ftl",
"login-idp-link-email.ftl",
"login-page-expired.ftl",
"login-config-totp.ftl",
"logout-confirm.ftl",
"idp-review-user-profile.ftl",
"update-email.ftl",
2023-04-20 20:51:46 +02:00
"select-authenticator.ftl",
2024-05-08 16:54:04 +02:00
"saml-post-form.ftl",
2024-05-10 21:40:23 +02:00
"delete-credential.ftl",
2024-05-10 21:48:47 +02:00
"code.ftl",
2024-05-11 00:05:58 +02:00
"delete-account-confirm.ftl",
"frontchannel-logout.ftl",
"login-recovery-authn-code-config.ftl",
2024-05-11 16:57:41 +02:00
"login-recovery-authn-code-input.ftl",
2024-05-11 18:54:11 +02:00
"login-reset-otp.ftl",
2024-05-11 19:18:52 +02:00
"login-x509-info.ftl",
"webauthn-error.ftl"
2023-04-03 20:16:38 +02:00
] as const;
export const accountThemePageIds = [
"password.ftl",
"account.ftl",
"sessions.ftl",
"totp.ftl",
"applications.ftl",
"log.ftl",
"federatedIdentity.ftl"
] as const;
2023-04-03 20:16:38 +02:00
export type LoginThemePageId = (typeof loginThemePageIds)[number];
export type AccountThemePageId = (typeof accountThemePageIds)[number];