Show pending transactions

This commit is contained in:
2023-03-11 11:45:09 +00:00
parent 77dcd4dd8f
commit 1c0cbba855
3 changed files with 27 additions and 6 deletions

View File

@@ -121,5 +121,5 @@ class BanksTransactions(LoginRequiredMixin, OTPRequiredMixin, ObjectList):
return self.render_to_response(context)
run = synchronize_async_helper(NordigenClient(aggregator))
transactions = synchronize_async_helper(run.get_transactions(account_id))
transactions = synchronize_async_helper(run.get_transactions(account_id, pending=True))
return transactions