mirror of
https://github.com/we-promise/sure.git
synced 2026-06-05 18:59:04 +00: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:
committed by
GitHub
parent
1c2f075053
commit
c1034e6edf
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user