本文介绍了我想覆盖设计宝石的authenticate_user和current_user方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想覆盖authenticate_user!和current_user方法的设计宝石在我的应用程序控制器可以请你帮我关于该
谢谢
解决方案
您可能可以像下面这样对其进行修改:
模块设计
模块控制器
模块助手
def authenticate_user!
#有些东西
结束
结束
结束
结束
但是我会问最终目标是什么,因为Devise已经内置了一些可定制功能,并且覆盖这些方法让我想知道为什么要使用Devise?。
I want to override authenticate_user! and current_user method of devise gem in my application Controller can you please help me with regards to thatThanks
解决方案
You may be able to monkey-patch it like:
module Devise
module Controllers
module Helpers
def authenticate_user!
#do some stuff
end
end
end
end
But I would ask what the ultimate goal is, because Devise has some customizability built into it already, and overriding these methods makes me wonder "why use Devise at all?"
这篇关于我想覆盖设计宝石的authenticate_user和current_user方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!