strapi/examples/getstarted/config/src/response-handlers.js
2021-09-23 09:14:09 +02:00

8 lines
127 B
JavaScript

'use strict';
module.exports = {
'404': async (/* ctx */) => {
// return ctx.notFound('My custom message 404');
},
};