mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
b122b683f4
no issue We changed `reschedule` event to trigger adapter's `unschedule` and `schedule` methods since we now generate separate tokens(urls) for consistency as two different url(token) is needed to complete the reschedule functionality.
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
function SchedulingBase() {
|
|
Object.defineProperty(this, 'requiredFns', {
|
|
value: ['schedule', 'unschedule', 'run'],
|
|
writable: false
|
|
});
|
|
}
|
|
|
|
module.exports = SchedulingBase;
|