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]
link|improve this question

67% accept rate
I believe that current_user must 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
feedback

1 Answer

You can do like this

 <% if can? :new, @article %>
   <%= link_to "New", New_article_path %>
 <% end %>

You can get further help from this

https://github.com/ryanb/cancan/wiki/Checking-Abilities

Hope it will work!!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.