UNPKG

sails-hook-schedule

Version:

Hook to manage basic cron job for sails application

18 lines (17 loc) 412 B
/** * Created by jaumard on 27/02/2015. */ module.exports.schedule = { sailsInContext : true, //If sails is not as global and you want to have it in your task tasks : { /*Every monday at 1am firstTask : { cron : "0 1 * * 1", task : function (context, sails) { console.log("cron ok"); }, context : {} }*/ } };