I have an issue with a dynamic active admin scope. I am attempting to create a scope for each \"manager\" of a \"project\" in my app. However, the scopes don\'t seem to up
I found this to work for me:
ActiveAdmin file
scope :working, :default => true do |projects| Project.working end
Model
scope :working, -> { where(:status => 'working') }
A bit late in the reply but hopefully it helps someone out.