10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { Job } from ".";
|
|
|
|
/**
|
|
* Remove the job from MongoDB
|
|
* @name Job#remove
|
|
* @function
|
|
*/
|
|
export const remove = async function (this: Job): Promise<number | undefined> {
|
|
return this.agenda.cancel({ _id: this.attrs._id });
|
|
};
|