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

23 lines
462 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module HasOnlineNotifications
extend ActiveSupport::Concern
included do
before_destroy :online_notification_destroy
end
=begin
delete object online notification list, will be executed automatically
model = Model.find(123)
model.online_notification_destroy
=end
def online_notification_destroy
OnlineNotification.remove(self.class.to_s, id)
true
end
end