Skip to content

Commit

Permalink
RAS-872: Extend EQ launch claims to include sds_dataset_id if require…
Browse files Browse the repository at this point in the history
…d for the form_type (#279)

* Fix for failing receipting

* auto patch increment

---------

Co-authored-by: ras-rm-pr-bot <[email protected]>
  • Loading branch information
SteveScorfield and ras-rm-pr-bot authored Sep 19, 2023
1 parent cf97f50 commit b7666dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _infra/helm/case/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 12.0.12
version: 12.0.13

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 12.0.12
appVersion: 12.0.13
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package uk.gov.ons.ctp.response.casesvc.message.feedback;

import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
Expand All @@ -15,4 +16,7 @@ public class CaseReceipt {
private String caseId;
private InboundChannel inboundChannel;
private String partyId;

@JsonInclude(JsonInclude.Include.NON_NULL)
private String sdsDatasetId;
}

0 comments on commit b7666dd

Please sign in to comment.