1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00
Maybe/app/models/concerns/accountable.rb
2024-02-03 02:48:51 +00:00

7 lines
128 B
Ruby

module Accountable
extend ActiveSupport::Concern
included do
has_one :account, as: :accountable, touch: true
end
end