mirror of
https://github.com/strapi/strapi.git
synced 2025-08-05 15:29:04 +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,
|
||
|
};
|