trabajo-afectivo/lib/sessions/event/core_workflow.rb
2022-01-01 14:38:12 +01:00

13 lines
305 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sessions::Event::CoreWorkflow < Sessions::Event::Base
database_connection_required
def run
{
event: 'core_workflow',
data: CoreWorkflow.perform(payload: @payload, user: current_user)
}
end
end