2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-04-19 10:09:54 +00:00
|
|
|
module ApplicationModel::HasExternalSync
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
after_destroy :external_sync_destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
def external_sync_destroy
|
|
|
|
ExternalSync.where(
|
|
|
|
object: self.class.to_s,
|
|
|
|
o_id: id,
|
|
|
|
).destroy_all
|
|
|
|
end
|
|
|
|
end
|