From 787f0d864eaade206aeb2abb7fd6d7e299a072cf Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Fri, 2 Feb 2024 17:15:12 +0000 Subject: [PATCH] Fix lint issue --- app/models/account.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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