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

8 lines
125 B
JavaScript
Raw Normal View History

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