Add the login-x509-info.ftl page

This commit is contained in:
Joseph Garrone
2024-05-11 18:54:11 +02:00
parent 3909e50d49
commit 88aaa18a24
4 changed files with 112 additions and 2 deletions

View File

@ -42,7 +42,8 @@ export type KcContext =
| KcContext.FrontchannelLogout
| KcContext.LoginRecoveryAuthnCodeConfig
| KcContext.LoginRecoveryAuthnCodeInput
| KcContext.LoginResetOtp;
| KcContext.LoginResetOtp
| KcContext.LoginX509Info;
assert<KcContext["themeType"] extends ThemeType ? true : false>();
@ -553,6 +554,17 @@ export declare namespace KcContext {
selectedCredentialId: string;
};
};
export type LoginX509Info = Common & {
pageId: "login-x509-info.ftl";
x509: {
formData: {
subjectDN?: string;
isUserEnabled?: boolean;
username?: string;
};
};
};
}
export type UserProfile = {