Thanks to visit codestin.com
Credit goes to github.com

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 @@ -3204,4 +3204,8 @@ noResultsFound=No results found
linkedOrganization=Linked organization
send=Send
redirectWhenEmailMatches=Redirect when email domain matches
redirectWhenEmailMatchesHelp=Automatically redirect the user to this identity provider when the email domain matches the domain
redirectWhenEmailMatchesHelp=Automatically redirect the user to this identity provider when the email domain matches the domain
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 @@ -517,6 +517,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 @@ -539,6 +545,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 @@ -561,6 +573,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 @@ -583,6 +601,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