File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ async function createIndex () {
5252 jobId : { type : 'keyword' } ,
5353 userId : { type : 'keyword' } ,
5454 status : { type : 'keyword' } ,
55+ viewedByCustomer : { type : 'boolean' } ,
5556 externalId : { type : 'keyword' } ,
5657 resume : { type : 'text' } ,
5758 remark : { type : 'keyword' } ,
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ processCreate.schema = {
101101 createdAt : Joi . date ( ) . required ( ) ,
102102 createdBy : Joi . string ( ) . uuid ( ) . required ( ) ,
103103 updatedAt : Joi . date ( ) . allow ( null ) ,
104+ viewedByCustomer : Joi . boolean ( ) . required ( ) ,
104105 updatedBy : Joi . string ( ) . uuid ( ) . allow ( null ) ,
105106 status : Joi . jobCandidateStatus ( ) . required ( ) ,
106107 externalId : Joi . string ( ) . allow ( null ) ,
You can’t perform that action at this time.
0 commit comments