In my grid this,
link_to('Edit', edit_manage_user_path(user.id))
works fine but this,
link_to('Delete', delete_manage_user_path(user.id))
gives the error "undefined method `delete_manage_user_path' for #<#:0xc05439c>" given that there is a delete action in my controller..
Any idea why this error is coming?