I had a similar problem, but I redefined the creation controller and wanted all active admins to be created to create messaegs errors. So here is what I did
controller do layout 'active_admin', :only => [:create,:my_collection_method,:my_member_method] def create //my code here end end
So basically, I added the line "layout" active_admin "in my part of the controller and added ALL my own methods. So," my_collection_method "is the action of the user collection in the active amdin resource, something like
:my_collection_action, :method=>:get do //my code here end
You can try something like that
source share