12 lines
315 B
JavaScript
Raw Normal View History

'use strict';
const { getService } = require('../../utils');
module.exports = async () => {
2021-07-13 18:46:36 +02:00
console.log('before');
await getService('components').syncConfigurations();
await getService('content-types').syncConfigurations();
await getService('permission').registerPermissions();
2021-07-13 18:46:36 +02:00
console.log('after');
};