在Active Admin中,我为特定模型添加了范围。我想使用范围来过滤结果,但由于它是单个范围,我不希望标签显示在页面顶部。有没有办法隐藏UI上的标签?
答案 0 :(得分:2)
如果它应该是您的默认范围而没有其他范围,则可以使用scope_to
,或者您可以覆盖scoped_collection
,both of which are documented here。
例如:
controller do
def scoped_collection
super.my_scope
end
end