mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 15:02:05 -03:30
Set directAccessGrantsEnabled default value to false (#37505)
* Set directAccessGrantsEnabled to false The Resource Owner Password Credentials Grant must not be used and should not be the default in Keycloak. Signed-off-by: Jim Martens <github@2martens.de> Closes #30226 * another default value... Signed-off-by: Niko Köbler <niko@n-k.de> --------- Signed-off-by: Niko Köbler <niko@n-k.de> Co-authored-by: Jim Martens <github@2martens.de>
This commit is contained in:
parent
d9e4981742
commit
9a3f47d68c
@ -152,7 +152,7 @@ export const CapabilityConfig = ({
|
||||
<GridItem lg={8} sm={6}>
|
||||
<Controller
|
||||
name="directAccessGrantsEnabled"
|
||||
defaultValue={true}
|
||||
defaultValue={false}
|
||||
control={control}
|
||||
render={({ field }) => (
|
||||
<InputGroup>
|
||||
|
||||
@ -68,7 +68,7 @@ export default function NewClientForm() {
|
||||
authorizationServicesEnabled: false,
|
||||
serviceAccountsEnabled: false,
|
||||
implicitFlowEnabled: false,
|
||||
directAccessGrantsEnabled: true,
|
||||
directAccessGrantsEnabled: false,
|
||||
standardFlowEnabled: true,
|
||||
frontchannelLogout: true,
|
||||
attributes: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user