Commit 9c608230532b409e5479fdb09ae5070c4ee10ac1
1 parent
0a07e2d2
Added option for case-insensitive username
Showing
2 changed files
with
3 additions
and
1 deletions
... | ... | @@ -55,7 +55,7 @@ public class UserServiceImpl extends AbstractEntityService implements UserServic |
55 | 55 | public static final String INCORRECT_USER_ID = "Incorrect userId "; |
56 | 56 | public static final String INCORRECT_TENANT_ID = "Incorrect tenantId "; |
57 | 57 | |
58 | - @Value("${security.user_login_case_sensitive}") | |
58 | + @Value("${security.user_login_case_sensitive:true}") | |
59 | 59 | private boolean userLoginCaseSensitive; |
60 | 60 | |
61 | 61 | @Autowired | ... | ... |