devise, update後のpath変更

デフォルトだとupdateした後に、root_pathに行ってしまうので
任意の画面へ飛ぶように修正しました

# users/registratinos_controller.rb
protected
  def after_update_path_for(resource)
    profile_path # 任意のpathをいれる
  end

end

参考記事

How To: Customize the redirect after a user edits their profile


コメント

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です