[PR #686] [CLOSED] Dev #3252

Closed
opened 2026-02-28 20:38:50 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/686
Author: @carkom
Created: 2/23/2023
Status: Closed

Base: masterHead: dev


📝 Commits (10+)

  • 277e352 Update gitignore about .idea folder
  • bedd4a9 Add integration with Nordigen
  • a6e8b70 Merge remote-tracking branch 'origin/master' into nordigen
  • fb5941c Fix linter
  • 572f375 Use longer access to the account
  • d4e5073 Move normalizatoin of accounts to the backend side
  • dba0196 Fix possibility to force remove account
  • 83830f1 Merge remote-tracking branch 'origin/master' into nordigen
  • 085e919 Move normalization of transactions to the backend side
  • 0a957c6 Merge remote-tracking branch 'origin/master' into nordigen

📊 Changes

24 files changed (+2273 additions, -171 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 packages/desktop-client/src/components/FinancesApp.js (+2 -0)
📝 packages/desktop-client/src/components/Modals.js (+21 -3)
📝 packages/desktop-client/src/components/accounts/Account.js (+3 -3)
📝 packages/desktop-client/src/components/accounts/AccountSyncCheck.js (+2 -16)
📝 packages/desktop-client/src/components/accounts/Filters.js (+2 -2)
📝 packages/desktop-client/src/components/modals/CreateAccount.js (+1 -1)
packages/desktop-client/src/components/nordigen/NordigenLink.js (+21 -0)
📝 packages/desktop-client/src/components/reports/Overview.js (+115 -0)
packages/desktop-client/src/components/reports/ReportFilters.js (+556 -0)
packages/desktop-client/src/components/reports/Spending.js (+211 -0)
packages/desktop-client/src/components/reports/graphs/spending-spreadsheet.js (+179 -0)
📝 packages/desktop-client/src/components/reports/index.js (+2 -0)
packages/desktop-client/src/nordigen.js (+39 -0)
📝 packages/loot-core/src/client/actions/account.js (+24 -6)
📝 packages/loot-core/src/server/accounts/link.js (+74 -0)
📝 packages/loot-core/src/server/accounts/sync.js (+407 -0)
📝 packages/loot-core/src/server/main.js (+249 -14)
📝 packages/loot-core/src/server/post.js (+2 -1)
📝 packages/loot-core/src/server/server-config.js (+1 -0)

...and 4 more files

📄 Description

Added report and updated some formatting


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/686 **Author:** [@carkom](https://github.com/carkom) **Created:** 2/23/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`277e352`](https://github.com/actualbudget/actual/commit/277e352917b85a110fa87243199e11efcce4f9a5) Update gitignore about .idea folder - [`bedd4a9`](https://github.com/actualbudget/actual/commit/bedd4a9023ebc383a78dfe017470de4e275718b3) Add integration with Nordigen - [`a6e8b70`](https://github.com/actualbudget/actual/commit/a6e8b70ffa04a8d4bb1eba0f0eb1af7ec149753b) Merge remote-tracking branch 'origin/master' into nordigen - [`fb5941c`](https://github.com/actualbudget/actual/commit/fb5941ccfc1540afc27b04a2278245d436673af2) Fix linter - [`572f375`](https://github.com/actualbudget/actual/commit/572f37518c7ced34842870ebb8b7faa78e221003) Use longer access to the account - [`d4e5073`](https://github.com/actualbudget/actual/commit/d4e5073c4d369732871cf88b922b99277a5ecc29) Move normalizatoin of accounts to the backend side - [`dba0196`](https://github.com/actualbudget/actual/commit/dba01967b06147e70454f9479b0912904c44e220) Fix possibility to force remove account - [`83830f1`](https://github.com/actualbudget/actual/commit/83830f101a8c75fc1f19f6efdc943918f290b3b3) Merge remote-tracking branch 'origin/master' into nordigen - [`085e919`](https://github.com/actualbudget/actual/commit/085e919ea0ecc90096aa3da6fdfd607e4405a8ac) Move normalization of transactions to the backend side - [`0a957c6`](https://github.com/actualbudget/actual/commit/0a957c66f322beb13cf6d9d1d6ff4edb926c37a1) Merge remote-tracking branch 'origin/master' into nordigen ### 📊 Changes **24 files changed** (+2273 additions, -171 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `packages/desktop-client/src/components/FinancesApp.js` (+2 -0) 📝 `packages/desktop-client/src/components/Modals.js` (+21 -3) 📝 `packages/desktop-client/src/components/accounts/Account.js` (+3 -3) 📝 `packages/desktop-client/src/components/accounts/AccountSyncCheck.js` (+2 -16) 📝 `packages/desktop-client/src/components/accounts/Filters.js` (+2 -2) 📝 `packages/desktop-client/src/components/modals/CreateAccount.js` (+1 -1) ➕ `packages/desktop-client/src/components/nordigen/NordigenLink.js` (+21 -0) 📝 `packages/desktop-client/src/components/reports/Overview.js` (+115 -0) ➕ `packages/desktop-client/src/components/reports/ReportFilters.js` (+556 -0) ➕ `packages/desktop-client/src/components/reports/Spending.js` (+211 -0) ➕ `packages/desktop-client/src/components/reports/graphs/spending-spreadsheet.js` (+179 -0) 📝 `packages/desktop-client/src/components/reports/index.js` (+2 -0) ➕ `packages/desktop-client/src/nordigen.js` (+39 -0) 📝 `packages/loot-core/src/client/actions/account.js` (+24 -6) 📝 `packages/loot-core/src/server/accounts/link.js` (+74 -0) 📝 `packages/loot-core/src/server/accounts/sync.js` (+407 -0) 📝 `packages/loot-core/src/server/main.js` (+249 -14) 📝 `packages/loot-core/src/server/post.js` (+2 -1) 📝 `packages/loot-core/src/server/server-config.js` (+1 -0) _...and 4 more files_ </details> ### 📄 Description Added report and updated some formatting --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-02-28 20:38:50 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#3252