mirror of
https://github.com/strapi/strapi.git
synced 2025-07-08 17:45:30 +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,
|
|
};
|