2e8821efdf
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
20 lines
587 B
Ruby
20 lines
587 B
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
|
module Model::Subtransactable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
include Model::Houidable
|
|
include Model::Jbuilder
|
|
include Model::Eventable
|
|
|
|
has_one :subtransaction, as: :subtransactable, dependent: :nullify
|
|
has_one :trx, through: :subtransaction
|
|
has_one :supporter, through: :trx
|
|
has_one :nonprofit, through: :trx
|
|
|
|
has_many :subtransaction_payments, through: :subtransaction
|
|
end
|
|
end
|