mirror of
https://github.com/strapi/strapi.git
synced 2025-08-03 14:28:40 +00:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
'use strict';
|
|
|
|
const { pick, map } = require('lodash/fp');
|
|
|
|
// visible fields for the API
|
|
const publicFields = ['id', 'displayName', 'category'];
|
|
|
|
const formatConditions = map(pick(publicFields));
|
|
|
|
module.exports = {
|
|
formatConditions,
|
|
};
|