deviseでログイン後に遷移するパスは、デフォルトだと
- {deviseで指定したmodel名}_root_path
- root_path
の順番で探す。それ以外を指定したい場合は、ApplicationController で after_sign_in_path_for メソッ
ドをオーバライドする。
例
class ApplicationController < ActionController::Base def after_sign_in_path_for(resources) bookmark_path end # ... end