mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-22 05:54:55 +00:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reportable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :reporting_events, dependent: :destroy
|
|
end
|
|
end
|