Alexandre Bodin 2bbd47ba2c Single type routes
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-11-02 19:41:44 +01:00

11 lines
202 B
JavaScript

'use strict';
const { prop } = require('lodash/fp');
module.exports = {
// retrieve a local service
getService(name) {
return prop(`content-manager.services.${name}`, strapi.plugins);
},
};