cletus/node_modules/agenda/lib/job/disable.ts
2025-05-09 15:53:19 -05:00

11 lines
205 B
TypeScript

import { Job } from ".";
/**
* Prevents the job type from running
* @name Job#disable
* @function
*/
export const disable = function (this: Job): Job {
this.attrs.disabled = true;
return this;
};