mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
8 lines
128 B
Ruby
8 lines
128 B
Ruby
|
module Accountable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
has_one :account, as: :accountable, touch: true
|
||
|
end
|
||
|
end
|