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";
|
||||
|
||||
const clientAuthenticationTypes = [
|
||||
"clientAuth_post",
|
||||
"clientAuth_basic",
|
||||
"clientAuth_secret_jwt",
|
||||
"clientAuth_privatekey_jwt",
|
||||
"client_secret_post",
|
||||
"client_secret_basic",
|
||||
"client_secret_jwt",
|
||||
"private_key_jwt",
|
||||
];
|
||||
|
||||
export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => {
|
||||
|
@ -73,7 +73,7 @@ export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => {
|
|||
/>
|
||||
</FormGroup>
|
||||
<ClientIdSecret
|
||||
secretRequired={clientAuthMethod !== "clientAuth_privatekey_jwt"}
|
||||
secretRequired={clientAuthMethod !== "private_key_jwt"}
|
||||
create={create}
|
||||
/>
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue