strapi/examples/getstarted/config/src/response-handlers.js

8 lines
127 B
JavaScript
Raw Normal View History

2021-09-23 09:14:09 +02:00
'use strict';
module.exports = {
'404': async (/* ctx */) => {
// return ctx.notFound('My custom message 404');
},
};