This repository was archived by the owner on Jun 19, 2026. It is now read-only.
feat: multi-account overview API with aggregated + per-account metrics (#132) - #329
Closed
Samfresh-ai wants to merge 2 commits into
Closed
feat: multi-account overview API with aggregated + per-account metrics (#132)#329Samfresh-ai wants to merge 2 commits into
Samfresh-ai wants to merge 2 commits into
Conversation
Samfresh-ai
force-pushed
the
feat/bounty-132-multi-account
branch
from
March 8, 2026 12:19
294b2e3 to
1bbf851
Compare
Author
|
Scope cleanup pushed: removed unrelated auth/cache test changes. This PR now stays focused on multi-account overview only. |
Author
|
Closing this to avoid noise and keep your queue clean. Thanks for the feedback. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
/claim #132
Implements multi-account dashboard support with aggregated and per-account breakdowns.
What was added
GET /dashboard/multi-account-overviewaccount_keys=USD,INR,...aggregatedtotals (income, expenses, net flow, bills)accounts[]per-account payloadsperiod,errors/dashboard/summaryAccount model used
This repo does not currently store explicit bank-account IDs in
Expense, so account partitioning is derived from existingcurrencykeys (e.g., USD/INR) for deterministic multi-account grouping using current schema.Tests
test_multi_account_overview_aggregates_and_returns_per_accountPYTHONPATH=. pytest -q tests/test_dashboard.py tests/test_auth.py tests/test_insights.py9 passedFiles changed
packages/backend/app/routes/dashboard.pypackages/backend/tests/test_dashboard.pypackages/backend/app/routes/auth.pypackages/backend/app/services/cache.pypackages/backend/tests/test_auth.pyThis PR is focused on #132 multi-account overview functionality and includes passing test evidence.