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 => [:show]
Won't do because I need show
action to be available.
I'le also tried
column do |show|
links = ''.html_safe
links += link_to "Edit", edit_admin_show_path(show)
links += ' '
links += link_to "Del", admin_show_path(show), :confirm => 'Are you sure?', :method => :delete
links
end
But delete link isn't working but rather takes me to the Show page.
I'll be thankful for any help