覆盖authenticate_user!在设计宝石中

发布于 2024-12-10 15:08:15 字数 357 浏览 0 评论 0原文

我正在我的应用程序控制器中覆盖我的身份验证方法

def authenticate_worker!
  if user_signed_in? && current_user.worker?
    authenticate_user!
  else
    super
  end
end 

,我不断收到

wrong number of arguments (1 for 0)
app/controllers/application_controller.rb:51:in `authenticate_worker!'

消息,知道我缺少什么吗?谢谢!

I'm overwriting my authenticate method in my application controller

def authenticate_worker!
  if user_signed_in? && current_user.worker?
    authenticate_user!
  else
    super
  end
end 

I keep getting

wrong number of arguments (1 for 0)
app/controllers/application_controller.rb:51:in `authenticate_worker!'

Any idea what i'm missing? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谜兔 2024-12-17 15:08:15

我遇到了同样的问题并解决了这个问题:

class ApplicationController < ActionController::Base
  protected
  def authenticate_user!(opts={}) 
    opts[:scope] = :user
    warden.authenticate!(opts) if !devise_controller? || opts.delete(:force)
    flash[:alert] = "I always have to monkeypatch devise... because I'm lazy to use the sorcery gem."
  end
end

所以,包装。复制并粘贴上面的代码,并在确定用户通过身份验证后将 flash[:alert] 替换为您想要执行的操作。

由于 opts 可选参数,会发生参数数量错误(1 for 0) 错误。

I had the same problem and fixed it doing this:

class ApplicationController < ActionController::Base
  protected
  def authenticate_user!(opts={}) 
    opts[:scope] = :user
    warden.authenticate!(opts) if !devise_controller? || opts.delete(:force)
    flash[:alert] = "I always have to monkeypatch devise... because I'm lazy to use the sorcery gem."
  end
end

So, wrapping. up, copy and paste the code above and substitute flash[:alert] with what you want to do after you are sure the user is authenticated.

The wrong number of arguments (1 for 0) error happens because of the opts optional parameter.

蝶…霜飞 2024-12-17 15:08:15

找到了。它正在传递 {:force=>true}
但不确定这个论点的作用是什么......

found it. It was passing {:force=>true}
Not sure what that argument does though...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文