Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3077,4 +3077,8 @@ sendIdTokenOnLogoutHelp=If the 'id_token_hint' parameter should be sent in logou
sendClientIdOnLogout=Send 'client_id' in logout requests
sendClientIdOnLogoutHelp=If the 'client_id' parameter should be sent in logout requests.
searchClientRegistration=Search for policy
importFileHelp=File to import a key
importFileHelp=File to import a key
emailVerificationHelp=Specifies independent timeout for email verification.
idpAccountEmailVerificationHelp=Specifies independent timeout for IdP account email verification.
forgotPasswordHelp=Specifies independent timeout for forgot password.
executeActionsHelp=Specifies independent timeout for execute actions.
24 changes: 24 additions & 0 deletions js/apps/admin-ui/src/realm-settings/TokensTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,12 @@ export const RealmSettingsTokensTab = ({
label={t("emailVerification")}
fieldId="emailVerification"
id="email-verification"
labelIcon={
<HelpItem
helpText={t("emailVerificationHelp")}
fieldLabelId="emailVerification"
/>
}
>
<Controller
name={`attributes.${beerify(
Expand All @@ -493,6 +499,12 @@ export const RealmSettingsTokensTab = ({
label={t("idpAccountEmailVerification")}
fieldId="idpAccountEmailVerification"
id="idp-acct-label"
labelIcon={
<HelpItem
helpText={t("idpAccountEmailVerificationHelp")}
fieldLabelId="idpAccountEmailVerification"
/>
}
>
<Controller
name={`attributes.${beerify(
Expand All @@ -515,6 +527,12 @@ export const RealmSettingsTokensTab = ({
label={t("forgotPassword")}
fieldId="forgotPassword"
id="forgot-password-label"
labelIcon={
<HelpItem
helpText={t("forgotPasswordHelp")}
fieldLabelId="forgotPassword"
/>
}
>
<Controller
name={`attributes.${beerify(
Expand All @@ -537,6 +555,12 @@ export const RealmSettingsTokensTab = ({
label={t("executeActions")}
fieldId="executeActions"
id="execute-actions"
labelIcon={
<HelpItem
helpText={t("executeActionsHelp")}
fieldLabelId="executeActions"
/>
}
>
<Controller
name={`attributes.${beerify(
Expand Down