15 lines
255 B
JavaScript
Raw Normal View History

2021-11-03 14:17:39 +01:00
'use strict';
/**
2022-08-09 12:03:51 +02:00
* `test-middleware` middleware
2021-11-03 14:17:39 +01:00
*/
module.exports = (config, { strapi }) => {
// Add your own logic here.
return async (ctx, next) => {
strapi.log.info('In application test-middleware middleware.');
2021-11-03 14:17:39 +01:00
await next();
};
};