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

@@ -123,6 +123,7 @@ export function OFXImportDialog({
balance: parsed.balance,
currency: parsed.currency,
lastImport: new Date().toISOString(),
externalUrl: null,
});
accountId = newAccount.id;
}
@@ -298,6 +299,7 @@ export function OFXImportDialog({
balance: parsedData.balance,
currency: parsedData.currency,
lastImport: new Date().toISOString(),
externalUrl: null,
});
accountId = newAccount.id;
}