我在我的Rails应用程序中使用authlogic作为我的用户登录功能。但authlogic允许密码空间,我的应用程序不需要这个。那我怎么能这样做呢?
谢谢!
答案 0 :(得分:0)
您可以使用正则表达式来定义密码规则。
validates_format_of :password, :with => /{regular expression here}/, :if => :require_password?, :message => "Must not contain any spaces!"