We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3baa42 + 6c13a45 commit a974a4eCopy full SHA for a974a4e
src/scripts/createIndex.js
@@ -27,6 +27,7 @@ async function createIndex () {
27
workload: { type: 'keyword' },
28
skills: { type: 'keyword' },
29
status: { type: 'keyword' },
30
+ isApplicationPageActive: { type: 'boolean' },
31
createdAt: { type: 'date' },
32
createdBy: { type: 'keyword' },
33
updatedAt: { type: 'date' },
src/services/JobProcessorService.js
@@ -82,7 +82,8 @@ processCreate.schema = {
82
createdBy: Joi.string().uuid().required(),
83
updatedAt: Joi.date().allow(null),
84
updatedBy: Joi.string().uuid().allow(null),
85
- status: Joi.jobStatus().required()
+ status: Joi.jobStatus().required(),
86
+ isApplicationPageActive: Joi.boolean().required()
87
}).required()
88
}).required(),
89
transactionId: Joi.string().required()
0 commit comments