mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
Update index
method in AccountsController
to fetch all accounts (#1491)
* Fetch all manual accounts, regardless of their active status * Fetch all Plaid items, regardless of their active status
This commit is contained in:
parent
1c2f075053
commit
c1034e6edf
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@ class AccountsController < ApplicationController
|
|||
before_action :set_account, only: %i[sync]
|
||||
|
||||
def index
|
||||
@manual_accounts = Current.family.accounts.manual.active.alphabetically
|
||||
@plaid_items = Current.family.plaid_items.active.ordered
|
||||
@manual_accounts = Current.family.accounts.manual.alphabetically
|
||||
@plaid_items = Current.family.plaid_items.ordered
|
||||
end
|
||||
|
||||
def summary
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue