Fix user creation with stronger minimum password requirements:q

This commit is contained in:
Nathan Bush 2016-05-05 10:40:49 -04:00
parent 26b9577719
commit 64883faa6e
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ v 8.10.0 (unreleased)
- Fix MR-auto-close text added to description. !4836
- Fix pagination when sorting by columns with lots of ties (like priority)
- Implement Subresource Integrity for CSS and JavaScript assets. This prevents malicious assets from loading in the case of a CDN compromise.
- Fix user creation with stronger minimum password requirements !4054 (nathan-pmt)
v 8.9.1
- Fix GitLab project import issues related to notes and builds

View File

@ -308,7 +308,7 @@ class User < ActiveRecord::Base
def generate_password
if self.force_random_password
self.password = self.password_confirmation = Devise.friendly_token.first(8)
self.password = self.password_confirmation = Devise.friendly_token.first(Devise.password_length.min)
end
end