Commit 0461760f2153c68210a25d40093e7575b67c9607
1 parent
8b9bbeeb
Exists in
master
and in
4 other branches
Minimal password length increased
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
config/initializers/devise.rb
... | ... | @@ -101,7 +101,7 @@ Devise.setup do |config| |
101 | 101 | |
102 | 102 | # ==> Configuration for :validatable |
103 | 103 | # Range for password length. Default is 6..128. |
104 | - config.password_length = 6..128 | |
104 | + config.password_length = 8..128 | |
105 | 105 | |
106 | 106 | # Email regex used to validate email formats. It simply asserts that |
107 | 107 | # an one (and only one) @ exists in the given string. This is mainly | ... | ... |