デフォルトだと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
コメントを残す