application_controller.rbへ記述する
def after_sign_in_path_for(resource)
user_path // ユーザー詳細画面に遷移
end
def after_sign_up_path_for(resource)
user_path // ユーザー詳細画面に遷移
end
def after_sign_out_path_for(resource)
new_user_session_path // ログイン画面に遷移
end
application_controller.rbに上記のような記述をするだけで、deviseで新規登録した後の遷移先、ログインした後の遷移先、ログアウトした後の遷移先を指定できる。