2022-08-09 12:03:51 +02:00

15 lines
255 B
JavaScript

'use strict';
/**
* `test-middleware` middleware
*/
module.exports = (config, { strapi }) => {
// Add your own logic here.
return async (ctx, next) => {
strapi.log.info('In application test-middleware middleware.');
await next();
};
};