2021-11-04 11:41:29 +01:00

14 lines
266 B
JavaScript

'use strict';
const pickWritableAttributes = require('./pick-writable-attributes');
// retrieve a local service
const getService = name => {
return strapi.plugin('content-manager').service(name);
};
module.exports = {
getService,
pickWritableAttributes,
};