feat: refs #6276 drop worker_getPrinter
gitea/salix/pipeline/head Build queued... Details

This commit is contained in:
Jorge Penadés 2024-01-19 14:50:33 +01:00
parent 6e59a87f9c
commit 428da6fe00
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
module.exports = Self => {
Self.remoteMethodCtx('getPrinter', {
description: 'Gets user\'s printer',
accessType: 'READ',
http: {
path: `/getPrinter`,
verb: 'GET'
},
returns: {
type: ['object'],
root: true
},
});
Self.getPrinter = async ctx => {
const userId = ctx.req.accessToken.userId;
const operator = await Self.findOne({
include: [
{
relation: 'printer',
scope: {
fields: ['id', 'name'],
}
}
],
where: {
workerFk: userId
}
});
if (operator) {
const printer = operator.printer();
return Array.isArray(printer) ? printer : [printer];
}
return [];
};
};