mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 11:48:43 +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,
|
|
};
|