10 lines
143 B
JavaScript
Raw Normal View History

2021-06-29 16:27:35 +02:00
'use strict';
const getService = name => {
2021-08-19 22:27:00 +02:00
return strapi.plugin('users-permissions').service(name);
2021-06-29 16:27:35 +02:00
};
module.exports = {
getService,
};