14
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】Deviseでユーザーログイン後のリダイレクト先を変更

Posted at

開発環境--------------------
windows
ruby 2.7.0
Rails 5.2.4.1
●----------------------------

大前提

deviseのコントローラーを作成してある
コマンドで以下を打つ

controllers users

アプリケーションコントローラーに以下を加えるだけ

やり方はシンプル。
users/application_controller.rb
に以下を加える

users/application_controller.rb
def after_sign_in_path_for(resource)
	user_path(resource)
end

redirect先は、routesで確認

コマンドで、
rails routes
と打つと、詳細が出てきます。

僕の場合、user/showでマイページを作成しているので、そこにredirectさせたかったので、
routesで調べたら、

|Prefix  |Verb |URI Pattern  |Controller#Action
|user |GET |/users/:id(.:format) |users#show

と設定されているので、
user_pathでusers#show が行われる。

よって、上記に変更でOK

14
25
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?