Rails 3.2 アプリでDeviseを使用していますが、新しい登録を Google アナリティクスでコンバージョンとして追跡できるようにしたいと考えています。可能であれば、現在リダイレクトされているのと同じページに新しいユーザーを誘導したいと思います(つまり、ユーザーが作成後にリダイレクトされる現在のページにリダイレクトするパススルービューである可能性があります)。
誰かがDeviseでこれを行うための最良の方法を見つけ出すのを手伝ってもらえますか?
# users/registrations_controller.rb
# POST /resource
def create
build_resource
if resource.save
if resource.active_for_authentication?
set_flash_message :notice, :signed_up if is_navigational_format?
sign_up(resource_name, resource)
respond_with resource, :location => after_sign_up_path_for(resource)
else
set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_navigational_format?
expire_session_data_after_sign_in!
respond_with resource, :location => after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords resource
respond_with resource
end
end
def after_sign_up_path_for(resource)
after_sign_in_path_for(resource)
end