mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
const { getService } = require('./utils');
 | 
						|
 | 
						|
module.exports = async () => {
 | 
						|
  await getService('components').syncConfigurations();
 | 
						|
  await getService('content-types').syncConfigurations();
 | 
						|
  await getService('permission').registerPermissions();
 | 
						|
};
 |