29
"/ users / sign_out"고안 레일 3과 일치하는 경로가 없습니다.
내 앱에 devise를 설치하고 application.html.erb파일에 다음을 적용했습니다 . <div id="user_nav"> <% if user_signed_in? %> Signed in as <%= current_user.email %>. This cannot be cheese? <%= link_to 'Sign out', destroy_user_session_path %> <% else %> <%= link_to 'Register', new_user_registration_path %> or <%= link_to 'Sign in', new_user_session_path %> <% end %> </div> 나는 …