/** * forbidden.js * * A custom response. * * Example usage: * ``` * return res.forbidden(); * // -or- * return res.forbidden(optionalData); * ``` * * Or with actions2: * ``` * exits: { * somethingHappened: { * responseType: 'forbidden' * } * } * ``` * * ``` * throw 'somethingHappened'; * // -or- * throw { somethingHappened: optionalData } * ``` */ module.exports = function forbidden(message) { const { res } = this; return res.status(403).json({ code: 'E_FORBIDDEN', message, }); };