2019-05-17 11:27:51 +00:00
|
|
|
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
|
|
|
|
module.exports = Self => {
|
|
|
|
require('../methods/worker-time-control/filter')(Self);
|
2019-11-05 07:59:48 +00:00
|
|
|
require('../methods/worker-time-control/addTimeEntry')(Self);
|
|
|
|
require('../methods/worker-time-control/deleteTimeEntry')(Self);
|
2021-06-17 13:09:04 +00:00
|
|
|
require('../methods/worker-time-control/updateTimeEntry')(Self);
|
2019-05-17 11:27:51 +00:00
|
|
|
|
|
|
|
Self.rewriteDbError(function(err) {
|
|
|
|
if (err.code === 'ER_DUP_ENTRY')
|
|
|
|
return new UserError(`The introduced hour already exists`);
|
|
|
|
return err;
|
|
|
|
});
|
|
|
|
};
|