Pierre Noël 3c9daba9a1 wIP
2021-07-13 18:46:36 +02:00

12 lines
315 B
JavaScript

'use strict';
const { getService } = require('../../utils');
module.exports = async () => {
console.log('before');
await getService('components').syncConfigurations();
await getService('content-types').syncConfigurations();
await getService('permission').registerPermissions();
console.log('after');
};