1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Basic account listing

This commit is contained in:
Josh Pigford 2024-02-02 11:09:31 -06:00
parent 253ae29da0
commit aef3e70ba0
2 changed files with 15 additions and 7 deletions

View file

@ -1,3 +1,5 @@
class Account < ApplicationRecord
belongs_to :family
scope :depository, -> { where(type: 'Depository') }
end