Couldn't find User with id=sign_out

前端 未结 6 1843
粉色の甜心
粉色の甜心 2021-01-04 15:19

Sign-out link isn\'t working in my rails application.

I have checked my routes.rb which is listed below and my application.html.erb looks to follow the right path.

6条回答
  •  醉话见心
    2021-01-04 15:32

    This worked for me

    #form 
    
    <%= link_to(destroy_user_session_path, {:class => "nav-link", :method => :delete}) do  %>
           Logout 
    <% end %>
    
    #routes
    
    devise_scope :user do
        get '/users/sign_out' => 'devise/sessions#destroy'
      end
    

提交回复
热议问题