mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			248 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			248 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
const _ = require('lodash');
 | 
						|
 | 
						|
const pickSchemaFields = model =>
 | 
						|
  _.pick(model, [
 | 
						|
    'modelType',
 | 
						|
    'connection',
 | 
						|
    'collectionName',
 | 
						|
    'info',
 | 
						|
    'options',
 | 
						|
    'attributes',
 | 
						|
  ]);
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  pickSchemaFields,
 | 
						|
};
 |