[Rails]deviseでログイン後に表示するページを変更
deviseでログイン後に遷移するページを変更するには、
ApplicationControllerにafter_sign_in_path_forを実装し遷移先を指定する。
def after_sign_in_path_for(resources) if user_signed_in? new_hoge_path elsif admin_signed_in? hoge_index_path end end
deviseでログイン後に遷移するページを変更するには、
ApplicationControllerにafter_sign_in_path_forを実装し遷移先を指定する。
def after_sign_in_path_for(resources) if user_signed_in? new_hoge_path elsif admin_signed_in? hoge_index_path end end