We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ba132 commit 3a70ebdCopy full SHA for 3a70ebd
migrations/elasticsearch_sync.js
@@ -306,6 +306,9 @@ function getRequestBody (indexName) {
306
terms: {
307
type: 'string'
308
},
309
+ groups: {
310
+ type: 'string'
311
+ },
312
type: {
313
type: 'string',
314
index: 'not_analyzed'
src/services/ProcessorServiceProject.js
@@ -31,6 +31,7 @@ function createSchema () {
31
createdAt: Joi.date().required(),
32
updatedAt: Joi.date().required(),
33
terms: Joi.array().items(Joi.string()).optional(),
34
+ groups: Joi.array().items(Joi.string()).optional(),
35
name: Joi.string().required(),
36
description: Joi.string().allow(null).allow('').optional(),
37
type: Joi.string().max(45).required(),
0 commit comments