12 lines
246 B
Ruby
12 lines
246 B
Ruby
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
module HasTransactionDispatcher
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
after_create TransactionDispatcher
|
||
|
before_update TransactionDispatcher
|
||
|
end
|
||
|
|
||
|
end
|