mazaid-rest-exec-tasks
Version:
exec tasks REST API
29 lines (21 loc) • 522 B
JavaScript
;
var Abstract = require('./Abstract');
class ExecTasks extends Abstract {
constructor (db) {
super(db);
this._collectionName = 'execTasks';
this._indexes = [
{
fields: {
creationDate: -1
},
options: {
name: 'creationDate',
unique: false,
background: true
}
}
];
}
}
module.exports = ExecTasks;