mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 16:23:09 +02:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import * as express from 'express';
|
|
|
|
export default (res: express.Response, x?: any, y?: any) => {
|
|
if (x === undefined) {
|
|
res.sendStatus(204);
|
|
} else if (typeof x === 'number') {
|
|
res.status(x).send({
|
|
error: x === 500 ? 'INTERNAL_ERROR' : y
|
|
});
|
|
} else {
|
|
res.send(x);
|
|
}
|
|
};
|