parent
e363fb68b0
commit
760af5db35
1 changed files with 5 additions and 5 deletions
|
@ -12,10 +12,10 @@ import { ClientIdSecret } from "../component/ClientIdSecret";
|
||||||
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
||||||
|
|
||||||
const clientAuthenticationTypes = [
|
const clientAuthenticationTypes = [
|
||||||
"clientAuth_post",
|
"client_secret_post",
|
||||||
"clientAuth_basic",
|
"client_secret_basic",
|
||||||
"clientAuth_secret_jwt",
|
"client_secret_jwt",
|
||||||
"clientAuth_privatekey_jwt",
|
"private_key_jwt",
|
||||||
];
|
];
|
||||||
|
|
||||||
export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => {
|
export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => {
|
||||||
|
@ -73,7 +73,7 @@ export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => {
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
<ClientIdSecret
|
<ClientIdSecret
|
||||||
secretRequired={clientAuthMethod !== "clientAuth_privatekey_jwt"}
|
secretRequired={clientAuthMethod !== "private_key_jwt"}
|
||||||
create={create}
|
create={create}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in a new issue