fixed input type and help text for IDP SAML Certificate (#31193)
Signed-off-by: Agnieszka Gancarczyk <agancarc@redhat.com> Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
parent
922eaa9fc8
commit
04f0304c44
2 changed files with 5 additions and 2 deletions
|
@ -3206,4 +3206,5 @@ redirectWhenEmailMatchesHelp=Automatically redirect the user to this identity pr
|
||||||
emailVerificationHelp=Specifies independent timeout for email verification.
|
emailVerificationHelp=Specifies independent timeout for email verification.
|
||||||
idpAccountEmailVerificationHelp=Specifies independent timeout for IdP account email verification.
|
idpAccountEmailVerificationHelp=Specifies independent timeout for IdP account email verification.
|
||||||
forgotPasswordHelp=Specifies independent timeout for forgot password.
|
forgotPasswordHelp=Specifies independent timeout for forgot password.
|
||||||
executeActionsHelp=Specifies independent timeout for execute actions.
|
executeActionsHelp=Specifies independent timeout for execute actions.
|
||||||
|
validatingX509CertsHelp=The public certificates Keycloak uses to validate the signatures of SAML requests and responses from the external IDP when Use metadata descriptor URL is OFF. Multiple certificates can be entered separated by comma (,). The certificates can be re-imported from the Metadata descriptor URL clicking the Import Keys action in the identity provider page. The action downloads the current certificates in the metadata endpoint and assigns them to the config in this same option. You need to click Save to definitely store the re-imported certificates.
|
|
@ -6,6 +6,7 @@ import { useTranslation } from "react-i18next";
|
||||||
import {
|
import {
|
||||||
NumberControl,
|
NumberControl,
|
||||||
SelectControl,
|
SelectControl,
|
||||||
|
TextAreaControl,
|
||||||
TextControl,
|
TextControl,
|
||||||
} from "@keycloak/keycloak-ui-shared";
|
} from "@keycloak/keycloak-ui-shared";
|
||||||
import { DefaultSwitchControl } from "../../components/SwitchControl";
|
import { DefaultSwitchControl } from "../../components/SwitchControl";
|
||||||
|
@ -298,9 +299,10 @@ const Fields = ({ readOnly }: DescriptorSettingsProps) => {
|
||||||
isDisabled={readOnly}
|
isDisabled={readOnly}
|
||||||
/>
|
/>
|
||||||
{useMetadataDescriptorUrl !== "true" && (
|
{useMetadataDescriptorUrl !== "true" && (
|
||||||
<TextControl
|
<TextAreaControl
|
||||||
name="config.signingCertificate"
|
name="config.signingCertificate"
|
||||||
label={t("validatingX509Certs")}
|
label={t("validatingX509Certs")}
|
||||||
|
labelIcon={t("validatingX509CertsHelp")}
|
||||||
readOnly={readOnly}
|
readOnly={readOnly}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue