Ghost/core/server/adapters/scheduling/index.js
2021-07-27 12:15:19 +04:00

14 lines
363 B
JavaScript

const postScheduling = require('./post-scheduling');
/**
* @description Initialize all scheduler modules.
*
* We currently only support post-scheduling: publish posts/pages when scheduled.
*
* @param {Object} options
* @param {string} options.apiUrl - Target Ghost API url
*/
exports.init = function init(options) {
return postScheduling(options);
};