2016-03-18 11:12:50 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cron config that gives you an opportunity
|
|
|
|
* to run scheduled jobs.
|
|
|
|
*
|
|
|
|
* The cron format consists of:
|
|
|
|
* [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] [YEAR (optional)]
|
2019-12-27 00:52:09 -03:00
|
|
|
*
|
|
|
|
* See more details here: https://strapi.io/documentation/3.0.0-beta.x/concepts/configurations.html#cron-tasks
|
2016-03-18 11:12:50 +01:00
|
|
|
*/
|
|
|
|
|
2017-07-01 16:34:02 +02:00
|
|
|
module.exports = {
|
2016-03-18 11:12:50 +01:00
|
|
|
/**
|
|
|
|
* Simple example.
|
|
|
|
* Every monday at 1am.
|
|
|
|
*/
|
2017-10-11 12:08:45 +02:00
|
|
|
// '0 1 * * 1': () => {
|
2016-03-18 11:12:50 +01:00
|
|
|
//
|
|
|
|
// }
|
|
|
|
};
|