in my Rails app have this routes.rb:
devise_for :admin
namespace :admin do
root :to => 'dashboard#index'
resources :customers
end
If try to logout with link_to('Logout',destroy_admin_session_path, :method => :delete), but rails print "No route matches [GET] "/admin/sign_out""
Is possible to fix without changes routes?