I have ActiveAdmin and CanCan working together. I already set the administrator and customer permissions.
Now I want to hide the New, Edit and Delete buttons according to the permissions set by CanCan but the following line gives me errors...
config.clear_action_items! :if => proc{can? (:destroy, Shipment)}
This one too
:if => proc{ can?(:destroy, Shipment)}, actions :all, :except => [:new, :create, :update, :edit, :destroy]
current_usermust be available in order to check the abilities that way. I doubt it is available in any of configuration files. – jibiel Mar 2 at 16:52