Add webauthn-error.ftl page

This commit is contained in:
Joseph Garrone
2024-05-11 19:18:52 +02:00
parent 1e50427d62
commit 94b618626d
4 changed files with 78 additions and 2 deletions

View File

@ -43,7 +43,8 @@ export type KcContext =
| KcContext.LoginRecoveryAuthnCodeConfig
| KcContext.LoginRecoveryAuthnCodeInput
| KcContext.LoginResetOtp
| KcContext.LoginX509Info;
| KcContext.LoginX509Info
| KcContext.WebauthnError;
assert<KcContext["themeType"] extends ThemeType ? true : false>();
@ -565,6 +566,11 @@ export declare namespace KcContext {
};
};
};
export type WebauthnError = Common & {
pageId: "webauthn-error.ftl";
isAppInitiatedAction?: boolean;
};
}
export type UserProfile = {