2019-08-31 04:07:25 +05:00
|
|
|
/**
|
|
|
|
* unprocessableEntity.js
|
|
|
|
*
|
|
|
|
* A custom response.
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
* ```
|
|
|
|
* return res.unprocessableEntity();
|
|
|
|
* // -or-
|
|
|
|
* return res.unprocessableEntity(optionalData);
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* Or with actions2:
|
|
|
|
* ```
|
|
|
|
* exits: {
|
|
|
|
* somethingHappened: {
|
|
|
|
* responseType: 'unprocessableEntity'
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* throw 'somethingHappened';
|
|
|
|
* // -or-
|
|
|
|
* throw { somethingHappened: optionalData }
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = function unprocessableEntity(message) {
|
|
|
|
const { res } = this;
|
|
|
|
|
|
|
|
return res.status(422).json({
|
|
|
|
code: 'E_UNPROCESSABLE_ENTITY',
|
2019-11-05 18:01:42 +05:00
|
|
|
message,
|
2019-08-31 04:07:25 +05:00
|
|
|
});
|
|
|
|
};
|