Skip to content

Commit

Permalink
Merge pull request #2817 from objectcomputing/bugfix-2815/pulse-no-ex…
Browse files Browse the repository at this point in the history
…ternal-score

Mark externalScore nullable so that we can pull responses with null v…
  • Loading branch information
mkimberlin authored Jan 9, 2025
2 parents 6264107 + 1bd9873 commit ecd0886
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class PulseResponse {
protected PulseResponse() {
}

public PulseResponse(UUID id, Integer internalScore, Integer externalScore, LocalDate submissionDate, @Nullable UUID teamMemberId, String internalFeelings, String externalFeelings) {
public PulseResponse(UUID id, Integer internalScore, @Nullable Integer externalScore, LocalDate submissionDate, @Nullable UUID teamMemberId, String internalFeelings, String externalFeelings) {
this.id = id;
this.internalScore = internalScore;
this.externalScore = externalScore;
Expand Down

0 comments on commit ecd0886

Please sign in to comment.