Skip to content

Commit

Permalink
Revert the setting
Browse files Browse the repository at this point in the history
Documentation allows minLength with 0 even for passwords
  • Loading branch information
strehle authored Oct 24, 2023
1 parent a0d753b commit d99061a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uaa/src/main/webapp/WEB-INF/spring/scim-endpoints.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</bean>

<bean id="globalPasswordPolicy" class="org.cloudfoundry.identity.uaa.provider.PasswordPolicy">
<constructor-arg name="minLength" value="${password.policy.global.minLength:1}"/>
<constructor-arg name="minLength" value="${password.policy.global.minLength:0}"/>
<constructor-arg name="maxLength" value="${password.policy.global.maxLength:255}"/>
<constructor-arg name="requireUpperCaseCharacter"
value="${password.policy.global.requireUpperCaseCharacter:0}"/>
Expand Down

0 comments on commit d99061a

Please sign in to comment.