Hi all,
I am trying to use backend scheduled functions (using jobs.config). The functions I want to run add or delete entries from a database. For now, the database permissions are set to allow all access to everyone.
To start off, I tried to add an entry every hour using a cron expression (later i will need ti get the delete entry to work as well). The expression i used was “* 1 * * *”. After a day I saw no new entries in the DB so i tried to use a specific time - “time”: “08:00” (instead of a cron expression).
Any ideas to why it doesnt work? or maybe what i can do/change so it will work?
TIA