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 () {
52
52
jobId : { type : 'keyword' } ,
53
53
userId : { type : 'keyword' } ,
54
54
status : { type : 'keyword' } ,
55
+ viewedByCustomer : { type : 'boolean' } ,
55
56
externalId : { type : 'keyword' } ,
56
57
resume : { type : 'text' } ,
57
58
remark : { type : 'keyword' } ,
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ processCreate.schema = {
101
101
createdAt : Joi . date ( ) . required ( ) ,
102
102
createdBy : Joi . string ( ) . uuid ( ) . required ( ) ,
103
103
updatedAt : Joi . date ( ) . allow ( null ) ,
104
+ viewedByCustomer : Joi . boolean ( ) . required ( ) ,
104
105
updatedBy : Joi . string ( ) . uuid ( ) . allow ( null ) ,
105
106
status : Joi . jobCandidateStatus ( ) . required ( ) ,
106
107
externalId : Joi . string ( ) . allow ( null ) ,
You can’t perform that action at this time.
0 commit comments