2017-11-20 14:35:24 +01:00

14 lines
335 B
JavaScript

'use strict';
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
module.exports = cb => {
strapi.plugins['users-permissions'].services.userspermissions.updatePermissions(cb);
};