trabajo-afectivo/app/models/application_model/has_recent_views.rb

24 lines
439 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module ApplicationModel::HasRecentViews
extend ActiveSupport::Concern
included do
before_destroy :recent_view_destroy
end
=begin
delete object recent viewed list, will be executed automatically
model = Model.find(123)
model.recent_view_destroy
=end
def recent_view_destroy
RecentView.log_destroy(self.class.to_s, id)
true
end
end