Skip to content

Commit a71b1a1

Browse files
committed
Mark externalScore nullable so that we can pull responses with null values in the pulse report.
1 parent a80c49b commit a71b1a1

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)