Rails3 の Devise で Registration の編集後のリダイレクト先を変更するメモ
(Rails3.2.12)
ファイル作成して下記のようにする
app/controllers/registrations_controller.rb
class RegistrationsController < Devise::RegistrationsController protected def after_update_path_for(resource) hoge_path end end