Skip to content

Commit ecd0886

Browse files
authored
Merge pull request #2817 from objectcomputing/bugfix-2815/pulse-no-external-score
Mark externalScore nullable so that we can pull responses with null v…
2 parents 6264107 + 1bd9873 commit ecd0886

File tree

1 file changed

+1
-1
lines changed
  • server/src/main/java/com/objectcomputing/checkins/services/pulseresponse

1 file changed

+1
-1
lines changed

server/src/main/java/com/objectcomputing/checkins/services/pulseresponse/PulseResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class PulseResponse {
7777
protected PulseResponse() {
7878
}
7979

80-
public PulseResponse(UUID id, Integer internalScore, Integer externalScore, LocalDate submissionDate, @Nullable UUID teamMemberId, String internalFeelings, String externalFeelings) {
80+
public PulseResponse(UUID id, Integer internalScore, @Nullable Integer externalScore, LocalDate submissionDate, @Nullable UUID teamMemberId, String internalFeelings, String externalFeelings) {
8181
this.id = id;
8282
this.internalScore = internalScore;
8383
this.externalScore = externalScore;

0 commit comments

Comments
 (0)