feat: add external URL support for bank accounts, allowing users to link to their bank's portal

This commit is contained in:
Julien Froidefond
2025-11-27 11:50:09 +01:00
parent b2efade4d5
commit 5eb37e631f
6 changed files with 38 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ export const accountService = {
balance: data.balance,
currency: data.currency,
lastImport: data.lastImport,
externalUrl: data.externalUrl,
},
});
@@ -26,6 +27,7 @@ export const accountService = {
balance: created.balance,
currency: created.currency,
lastImport: created.lastImport,
externalUrl: created.externalUrl,
};
},
@@ -44,6 +46,7 @@ export const accountService = {
balance: data.balance,
currency: data.currency,
lastImport: data.lastImport,
externalUrl: data.externalUrl,
},
});
@@ -57,6 +60,7 @@ export const accountService = {
balance: updated.balance,
currency: updated.currency,
lastImport: updated.lastImport,
externalUrl: updated.externalUrl,
};
},

View File

@@ -38,6 +38,7 @@ export const bankingService = {
balance: a.balance,
currency: a.currency,
lastImport: a.lastImport,
externalUrl: a.externalUrl,
}),
),
transactions: transactions.map(