feat: Addition of FederatedIdentity Account Page

This commit is contained in:
giorgoslytos
2024-05-17 12:14:47 +03:00
parent 19ba0873f5
commit 346e3df009
6 changed files with 142 additions and 2 deletions

View File

@ -27,7 +27,15 @@ export const loginThemePageIds = [
"saml-post-form.ftl"
] as const;
export const accountThemePageIds = ["password.ftl", "account.ftl", "sessions.ftl", "totp.ftl", "applications.ftl", "log.ftl"] as const;
export const accountThemePageIds = [
"password.ftl",
"account.ftl",
"sessions.ftl",
"totp.ftl",
"applications.ftl",
"log.ftl",
"federatedIdentity.ftl"
] as const;
export type LoginThemePageId = (typeof loginThemePageIds)[number];
export type AccountThemePageId = (typeof accountThemePageIds)[number];