10 lines
148 B
Ruby
10 lines
148 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Reportable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
has_many :events, dependent: :destroy
|
||
|
end
|
||
|
end
|