15 lines
244 B
JavaScript
Raw Normal View History

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