4260441f8c
Tech debt clean up Fixes #4057 Co-authored-by: Aswin Dev P S <aswin@chatwoot.com>
9 lines
158 B
Ruby
9 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reportable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :reporting_events, dependent: :destroy
|
|
end
|
|
end
|