Chatwoot/app/models/concerns/reportable.rb
Sojan Jose 4260441f8c
Chore: clean up Reporting Events (#4044)
Tech debt clean up

Fixes #4057

Co-authored-by: Aswin Dev P S <aswin@chatwoot.com>
2022-02-28 18:16:12 +05:30

9 lines
158 B
Ruby

# frozen_string_literal: true
module Reportable
extend ActiveSupport::Concern
included do
has_many :reporting_events, dependent: :destroy
end
end