trabajo-afectivo/app/models/concerns/has_links.rb
2022-01-01 14:38:12 +01:00

26 lines
438 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module HasLinks
extend ActiveSupport::Concern
included do
before_destroy :links_destroy
end
=begin
delete object link list, will be executed automatically
model = Model.find(123)
model.links_destroy
=end
def links_destroy
Link.remove_all(
link_object: self.class.to_s,
link_object_value: id,
)
true
end
end