feat: split cron into import and mailing jobs

This commit is contained in:
Riccardo
2023-12-18 16:13:30 +01:00
parent 875d66f2f7
commit 37ffb951a9
6 changed files with 85 additions and 53 deletions

View File

@@ -1,7 +1,11 @@
{
"crons": [
{
"path": "/api/cron",
"path": "/api/import",
"schedule": "0 3 * * *"
},
{
"path": "/api/mailing",
"schedule": "0 5 * * *"
}
],