0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-03 23:09:17 -05:00
verdaccio/test/functional/fixtures/plugins/middlewares.js

19 lines
409 B
JavaScript
Raw Normal View History

2019-09-26 18:22:14 +02:00
function Plugin(config, pluginOptions) {
const self = Object.create(Plugin.prototype);
self._config = config;
2019-09-26 18:22:14 +02:00
self._logger = pluginOptions.logger;
return self;
}
2019-09-26 18:22:14 +02:00
Plugin.prototype.register_middlewares = function (app) {
const { message } = this._config;
app.get('/test/route', function (req, res, next) {
res.status(200);
return next({ ok: message });
});
2019-09-26 18:22:14 +02:00
};
module.exports = Plugin;