I\'ve made a title of my resources as a link to a Show action. Now I want to remove that link form default_actions
.
actions :all, :except =
More recent versions support a call to actions method within the resource definition:
ActiveAdmin.register Foo do
actions :all, except: [:edit, :destroy] #just show
...
I did it this way (resource_path).
column "" do |resource|
links = ''.html_safe
links += link_to I18n.t('active_admin.edit'), edit_resource_path(resource), :class => "member_link edit_link"
links += link_to I18n.t('active_admin.delete'), resource_path(resource), :method => :delete, :confirm => I18n.t('active_admin.delete_confirmation'), :class => "member_link delete_link"
links
end