前提・実現したいこと
rails6にdeviseを導入しました。
ログイン後の画面を/articles/indexに変更したいです。
発生している問題・エラーメッセージ
undefined local variable or method ` articles_index' for #<Users::SessionsController:0x00007fb82bd3ae60> Extracted source (around line #7): if current_user flash[:notice] = "ログインに成功しました" articles_index end end
試したこと
rails routesでpath、articles_indexを確認。
application controllerに追記したが上記のエラーが発生した。
代わりに redirect_to("/articles/index")を試したがエラーが発生した。
undefined method ` redirect_to' for #Users::SessionsController:0x00007fb82bdf53f0 Did you mean? redirect_to
Extracted source (around line #7):
if current_user flash[:notice] = "ログインに成功しました" redirect_to ("/articles/index") end
end
補足情報(FW/ツールのバージョンなど)
macOS
あなたの回答
tips
プレビュー