Ghost/core/server/adapters/scheduling/index.js
Fabien O'Carroll 1f68d8dc20 Refactored existing adapters to use adapter-manager
no-issue

This removes duplications and reduces maintentence going forward.
2020-04-05 21:13:47 +02:00

14 lines
368 B
JavaScript

const postScheduling = require('./post-scheduling');
/**
* @description Initialise 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.init(options);
};