From 755e16b138acbe2800209042ab82b8a2b2e10250 Mon Sep 17 00:00:00 2001 From: Simon Middleton Date: Tue, 31 Mar 2026 12:31:03 +0100 Subject: [PATCH 1/4] New backend PR for 3789 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53ebefd17e..36328798d0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# pcs-api +# pcs-api - SDM Comment to delete ## Building and deploying the application From 8c1ae6b7ec1151ce2a1bccdc5f01b50ffe232e2b Mon Sep 17 00:00:00 2001 From: Simon Middleton Date: Tue, 31 Mar 2026 17:08:15 +0100 Subject: [PATCH 2/4] checking case data pulls through occupationLicense details for Wales --- .../pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java b/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java index 61d340d5e0..d07387d865 100644 --- a/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java +++ b/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java @@ -34,7 +34,8 @@ public class OccupationLicenceDetailsWales { @CCD( typeOverride = TextArea, label = "Give details about what type of occupation contract or licence is in place", - hint = "You can enter up to 500 characters" + hint = "You can enter up to 500 characters", + access = {CitizenAccess.class} ) private String otherLicenceTypeDetails; From d667b082c3424fbc27dc1ca17f42a42af48d0fb7 Mon Sep 17 00:00:00 2001 From: Simon Middleton Date: Tue, 31 Mar 2026 17:08:39 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36328798d0..53ebefd17e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# pcs-api - SDM Comment to delete +# pcs-api ## Building and deploying the application From 96d74bcb858840dec4df217eafa5077358636e66 Mon Sep 17 00:00:00 2001 From: Simon Middleton Date: Thu, 2 Apr 2026 11:37:32 +0100 Subject: [PATCH 4/4] added max attribute 500 --- .../pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java b/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java index d07387d865..1452e4ba91 100644 --- a/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java +++ b/src/main/java/uk/gov/hmcts/reform/pcs/ccd/domain/wales/OccupationLicenceDetailsWales.java @@ -35,7 +35,8 @@ public class OccupationLicenceDetailsWales { typeOverride = TextArea, label = "Give details about what type of occupation contract or licence is in place", hint = "You can enter up to 500 characters", - access = {CitizenAccess.class} + access = {CitizenAccess.class}, + max = 500 ) private String otherLicenceTypeDetails;