Skip to content

Commit

Permalink
Merge pull request #5202 from inception-project/feature/5201-Users-sh…
Browse files Browse the repository at this point in the history
…ould-be-able-to-change-their-own-password-by-default

#5201 - Users should be able to change their own password by default
  • Loading branch information
reckart authored Dec 15, 2024
2 parents 075904c + 74eac2c commit 0e4805b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties("user.profile")
public class UserProfilePropertiesImpl implements UserProfileProperties
public class UserProfilePropertiesImpl
implements UserProfileProperties
{
private boolean accessible;
private boolean accessible = true;

public void setAccessible(boolean aAccessible)
{
Expand Down

0 comments on commit 0e4805b

Please sign in to comment.