Skip to content

Commit

Permalink
remove unnecessary fields
Browse files Browse the repository at this point in the history
  • Loading branch information
m5r committed Sep 23, 2024
1 parent 39f6be9 commit 1d6abd2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,5 @@ function(doc) {
include.forEach(function(key) {
emitField(key, doc[key], order);
});
emitMaybe('case_id:' + doc.case_id, order);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,5 @@ function(doc) {
include.forEach(function(key) {
emitField(type, key, doc[key], order);
});
emitMaybe('case_id:' + doc.case_id, order);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function(doc) {
}
};

var include = ['patient_id', 'patient_uuid', 'place_id', 'case_id', 'patient_name'];
var include = ['patient_id', 'place_id', 'case_id', 'patient_name'];
include.forEach(function(key) {
emitField(key, doc[key], doc.reported_date);

Expand Down

0 comments on commit 1d6abd2

Please sign in to comment.