1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 08:09:38 +02:00
Maybe/app/models/account.rb
2024-02-02 17:01:47 +00:00

5 lines
172 B
Ruby

class Account < ApplicationRecord
belongs_to :family
VALID_ACCOUNT_TYPES = %w[Investment Depository Credit Loan Property Vehicle OtherAsset OtherLiability].freeze
end