在rails中禁用关联
是否有可能完全禁用在rails_admin
使用特定的模型关联?
我有一个模型,有成千上万的关联对象,似乎让他们在rails管理员中可见/启用导致数据库窒息。
config.model 'ParentModel' do
configure :my_association do
hide
# for list view
filterable false
searchable false
end
# rest of your ParentModel configuration
end
这应该做到这一点。
或者,如果排除相关模型( config.excluded
),则关联也不会显示出来。
上一篇: Disable an association in rails
下一篇: How to Retrieve and Query JSON type fields in Apache Solr 6.5