ruby-on-rails – 如何使用AuthLogic模拟用户

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何使用AuthLogic模拟用户前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要能够在没有解密密码的情况下创建UserSession.

我该怎么做呢?

我目前的解决方法是:

在user.rb中

def valid_crypted_or_non_crypted_password?(password) 
   valid_password?(password) || password == crypted_password
end

在user_session.rb中

verify_password_method :valid_crypted_or_non_crypted_password?

登录

UserSession.create(:login => u.login,:password => u.crypted_password)

有没有更好的方法来做到这一点?

解决方法

根据 the documentation,您可以将用户对象传递给UserSession.create.
UserSession.create(@some_user)

我没有尝试过.

原文链接:https://www.f2er.com/ruby/265552.html

猜你在找的Ruby相关文章