工夫に問題があります。ユーザーがすでにサインインしていて、サインインリンクをクリックしても何も起こりませんが、ターミナルに出力されます。
Filter chain halted as :require_no_authentication rendered or redirected
これは私が行くときに起こりますProcessing by SessionsController#new as HTML
ログに記録されたユーザーがいる場合にデバイスに移動するように指示する方法はありafter_sign_in_path
ますか?
これが私のafter_sign_in_pathです
def after_sign_in_path_for(resource)
if session[:user_return_to]
return_to = session[:user_return_to]
session[:user_return_to] = nil
return_to
else
redirect_path(resource)
end
end