前提・実現したいこと
Signin.logaut後のパスの設定ができないです。
def after_sigh_in_path_for(resource)
user_path(resource)で飛ばそうと思っています
該当のソースコード
controller
1class ApplicationController < ActionController::Base 2 before_action :authenticate_user!,except: [:top,:index] 3 4 before_action :configure_permitted_parameters, if: :devise_controller? 5 6 def after_sigh_in_path_for(resource) 7 user_path(resource) 8 end 9 10 def after_sign_out_path_for(resource) 11 root_path 12 end 13 14 protected 15def configure_permitted_parameters 16 devise_parameter_sanitizer.permit(:sign_up,keys:[:email]) 17end 18end
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
Rails5.2.6
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。