diff --git a/app/models/account.rb b/app/models/account.rb index ac8e3131..0c34c0b3 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -1,7 +1,7 @@ class Account < ApplicationRecord VALID_ACCOUNT_TYPES = %w[Investment Depository Credit Loan Property Vehicle OtherAsset OtherLiability].freeze - + belongs_to :family - scope :depository, -> { where(type: 'Depository') } + scope :depository, -> { where(type: "Depository") } end