13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
export default function apiWrapper(_options) {
|
|
return async function apiWrapperMiddleware(ctx, next) {
|
|
await next();
|
|
|
|
const ok = ctx.status < 400;
|
|
|
|
ctx.body = {
|
|
...ctx.body,
|
|
ok,
|
|
};
|
|
};
|
|
}
|