mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
36 lines
642 B
JavaScript
36 lines
642 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,
|
|
});
|
|
};
|