Skip to content

Commit

Permalink
fixed max password length should be longer than 500 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed May 19, 2022
1 parent 3dffedc commit ffde022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion para-core/src/main/java/com/erudika/para/core/User.java
Expand Up @@ -49,7 +49,7 @@ public class User implements ParaObject {
/**
* Maximum password length.
*/
public static final int MAX_PASSWORD_LENGTH = 500;
public static final int MAX_PASSWORD_LENGTH = 5000;

@Stored @Locked private String id;
@Stored @Locked private Long timestamp;
Expand Down

0 comments on commit ffde022

Please sign in to comment.