Updated method accessType
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2022-10-09 20:14:14 +02:00
parent 587da840c0
commit 3dee50a796
2 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,9 @@
const {Report, Email, smtp} = require('vn-print');
const {Email} = require('vn-print');
module.exports = Self => {
Self.remoteMethodCtx('claimPickupEmail', {
description: 'Sends the the claim pickup order email with an attached PDF',
accessType: 'WRITE',
accepts: [
{
arg: 'id',
@ -40,7 +41,7 @@ module.exports = Self => {
}
});
Self.claimPickupEmail = async(ctx, id) => {
Self.claimPickupEmail = async ctx => {
const args = Object.assign({}, ctx.args);
const params = {
recipient: args.recipient,

View File

@ -3,6 +3,7 @@ const {Email} = require('vn-print');
module.exports = Self => {
Self.remoteMethodCtx('driverRouteEmail', {
description: 'Sends the driver route email with an attached PDF',
accessType: 'WRITE',
accepts: [
{
arg: 'id',