mirror of
https://github.com/strapi/strapi.git
synced 2025-07-10 10:33:53 +00:00
13 lines
198 B
JavaScript
13 lines
198 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const sanitize = require('./sanitize');
|
||
|
|
||
|
const getService = (name) => {
|
||
|
return strapi.plugin('users-permissions').service(name);
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
getService,
|
||
|
sanitize,
|
||
|
};
|