@@ -72,6 +72,7 class User < Principal | |||
|
72 | 72 | validates_length_of :mail, :maximum => 60, :allow_nil => true |
|
73 | 73 | validates_confirmation_of :password, :allow_nil => true |
|
74 | 74 | validates_inclusion_of :mail_notification, :in => MAIL_NOTIFICATION_OPTIONS.collect(&:first), :allow_blank => true |
|
75 | validate :validate_password_length | |
|
75 | 76 | |
|
76 | 77 | before_create :set_mail_notification |
|
77 | 78 | before_save :update_hashed_password |
@@ -546,7 +547,7 class User < Principal | |||
|
546 | 547 | |
|
547 | 548 | protected |
|
548 | 549 | |
|
549 | def validate | |
|
550 | def validate_password_length | |
|
550 | 551 | # Password length validation based on setting |
|
551 | 552 | if !password.nil? && password.size < Setting.password_min_length.to_i |
|
552 | 553 | errors.add(:password, :too_short, :count => Setting.password_min_length.to_i) |
General Comments 0
You need to be logged in to leave comments.
Login now