zammad/app/controllers/application_controller/handles_transitions.rb
2026-01-02 15:41:09 +02:00

23 lines
461 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
module ApplicationController::HandlesTransitions
extend ActiveSupport::Concern
included do
around_action :handle_transaction
end
private
def handle_transaction
ApplicationHandleInfo.current = 'application_server'
PushMessages.init
yield
TransactionDispatcher.commit
PushMessages.finish
ensure
ApplicationHandleInfo.current = nil
end
end