(req, payload, done)
| 81 | }) |
| 82 | |
| 83 | function customParser (req, payload, done) { |
| 84 | jsonParser(payload, function (err, body) { |
| 85 | done(err, body) |
| 86 | }) |
| 87 | } |
| 88 | |
| 89 | fastify.addContentTypeParser('application/jsoff', customParser) |
| 90 | fastify.addContentTypeParser('application/ffosj', customParser) |