例如,我有:

class Answer
  include Mongoid::Document
  default_scope where(status: "active")
end

但是,当我有此类时,所有隐藏的答案都不会显示在rails_admin中。有什么建议吗?

最佳答案

我会这样做:

list
  scopes [:unscoped, :nil, :scope1]

09-27 06:32