module.exports = Self => { Self.remoteMethodCtx('receiptPdf', { description: 'Send the receipt pdf to client', accepts: [ { arg: 'id', type: 'number', required: true, description: 'The receipt id', http: {source: 'path'} }, { arg: 'recipientId', type: 'number', description: 'The recipient id', required: false } ], returns: [ { arg: 'body', type: 'file', root: true }, { arg: 'Content-Type', type: 'String', http: {target: 'header'} }, { arg: 'Content-Disposition', type: 'String', http: {target: 'header'} } ], http: { path: '/:id/receipt-pdf', verb: 'GET' } }); Self.receiptPdf = (ctx, id) => Self.printReport(ctx, id, 'receipt'); };