我在 Rails 应用程序中使用 ActiveAdmin gem。如果我想添加一个适用于所有 activeadmin gem 的新 before 过滤器,我该怎么做?我想我可以修改 ActiveAdmin 中的 BaseController 来实现这一点,但是从 rails 应用程序中进行此修改的正确方法是什么?有没有办法复制和覆盖 BaseController?
问问题
2338 次
2 回答
9
如果我理解你,有一个特殊的配置
# == Controller Filters
#
# You can add before, after and around filters to all of your
# Active Admin resources from here.
#
config.before_filter do
end
你可以在 initializers/active_admin.rb 中找到它
于 2012-11-01T15:51:10.383 回答
0
我通过在config/initializers/active_admin.rb
. 只需检查线路
#enter code here
#Controller Filters
# You can add before, after and around filters to all of your
# Active Admin resources and pages from here.
在此处写下您的代码,与描述的相同Fivell
于 2016-12-13T02:18:47.697 回答