You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
planka_custom/server/api/responses/unprocessableEntity.js

37 lines
641 B
JavaScript

/**
* 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',
message
});
};