We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Two different ways to do this:
1. Global config for your app:
In config/initializers/devise.rb:
config/initializers/devise.rb
config.password_length = 10..128
2. On a per-model basis:
In user.rb, for example:
user.rb
devise :database_authenticatable, :validatable, password_length: 10..128