Welcome to mirror list, hosted at ThFree Co, Russian Federation.

devise_password_length.rb.example « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97305825e07ccf9c7fd29e60c227168fd548ee64 (plain)
1
2
3
4
5
6
Devise.setup do |config|
  # The following line changes the password length limits for new users. In the
  # example below the minimum length is 12 characters, and the maximum length
  # is 128 characters.
  config.password_length = 12..128
end