Skip to content

Commit

Permalink
Remove deprecated field on tenant creation (minio#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
cniackz committed Aug 16, 2023
1 parent 9a77049 commit 3acf4cb
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ const IDPOpenID = () => {
(state: AppState) =>
state.createTenant.fields.identityProvider.openIDSecretID,
);
const openIDCallbackURL = useSelector(
(state: AppState) =>
state.createTenant.fields.identityProvider.openIDCallbackURL,
);
const openIDClaimName = useSelector(
(state: AppState) =>
state.createTenant.fields.identityProvider.openIDClaimName,
Expand Down Expand Up @@ -208,20 +204,6 @@ const IDPOpenID = () => {
required
/>
</Grid>
<Grid item xs={12} className={classes.formFieldRow}>
<InputBoxWrapper
id="openID_callbackURL"
name="openID_callbackURL"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
updateField("openIDCallbackURL", e.target.value);
cleanValidation("openID_callbackURL");
}}
label="Callback URL"
value={openIDCallbackURL}
placeholder="https://your-console-endpoint:9443/oauth_callback"
error={validationErrors["openID_callbackURL"] || ""}
/>
</Grid>
<Grid item xs={12} className={classes.formFieldRow}>
<InputBoxWrapper
id="openID_claimName"
Expand Down

0 comments on commit 3acf4cb

Please sign in to comment.