12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
module.exports = Self => {
|
|
require('../methods/ticket-dms/removeFile')(Self);
|
|
|
|
Self.rewriteDbError(function(err) {
|
|
if (err.code === 'ER_DUP_ENTRY')
|
|
return new UserError('This document already exists on this ticket');
|
|
return err;
|
|
});
|
|
};
|