rails admin - Is it possible to override default_scope in rails_admin? -


for example, have:

class answer   include mongoid::document   default_scope where(status: "active") end 

however, when have class none of hidden answers show in rails_admin. recommendations on this?

i this:

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

Comments