Hi everyone,
In the latest update of my Finovara project, I added more logs for user activities about limits.
How does it work?
As soon as a user:
• Adds a limit
• Removes a limit
• Edits a limit
They can see all their account activities.
A sample JSON looks like this:
{
"limitActivityType": "ADDED_LIMIT",
"limitType": "DAILY",
"amount": 1500.00,
"previousAmount": 1000.00,
"date": "2026-02-25T14:30:00"
}
Records are deleted from the database every month thanks to the scheduler and cron job set in the .yml file.
Here's the link to the commit related to this update: https://github.com/M4rc1nek/finovara-backend/commit/ce42ab006d46d0c309d3806ddf83498065cbd3ea
Thanks for reading!
Top comments (0)