|
|
@ -666,6 +666,10 @@ class User < ApplicationRecord
|
|
|
|
if password.present? && password.size < MIX_PASSWORD_LIMIT && !User.current.admin?
|
|
|
|
if password.present? && password.size < MIX_PASSWORD_LIMIT && !User.current.admin?
|
|
|
|
raise("密码长度不能低于#{MIX_PASSWORD_LIMIT}位")
|
|
|
|
raise("密码长度不能低于#{MIX_PASSWORD_LIMIT}位")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if password.present? && password.size > 16
|
|
|
|
|
|
|
|
raise('密码长度不能超过16位')
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|