File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ async function createIndex () {
27
27
workload : { type : 'keyword' } ,
28
28
skills : { type : 'keyword' } ,
29
29
status : { type : 'keyword' } ,
30
+ isApplicationPageActive : { type : 'boolean' } ,
30
31
createdAt : { type : 'date' } ,
31
32
createdBy : { type : 'keyword' } ,
32
33
updatedAt : { type : 'date' } ,
Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ processCreate.schema = {
82
82
createdBy : Joi . string ( ) . uuid ( ) . required ( ) ,
83
83
updatedAt : Joi . date ( ) . allow ( null ) ,
84
84
updatedBy : Joi . string ( ) . uuid ( ) . allow ( null ) ,
85
- status : Joi . jobStatus ( ) . required ( )
85
+ status : Joi . jobStatus ( ) . required ( ) ,
86
+ isApplicationPageActive : Joi . boolean ( ) . required ( )
86
87
} ) . required ( )
87
88
} ) . required ( ) ,
88
89
transactionId : Joi . string ( ) . required ( )
You can’t perform that action at this time.
0 commit comments