-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added new ManageContactInformation callback handler and event and whitelisted it within the AllowedFlowState service. * Added new ManageContactInformation callback handler and event and whitelisted it within the AllowedFlowState service. * CIV-9992 add options for manage contact information * revert accidental commit * add utils test * update utils test * add test scenarios for handler * update handler tests * add IDs to party options * changed name of some variables * added chosenpartytype and chosenpartyid to determine what to show on page 2, wip on applicant/defendant pages * adding tests ManageContactInformationUtilsTest * changed some keys, updated tests * experts and witnesses form wip * show experts on ui * make id fields public * Cherry picked the 3 main commits from CIV-3216 Added partyID to dq witness and expert objects. Enabled the initialisation on party Ids in DQ witnesses and experts and copied partyIDs into their relative case level counterparts Moved changes behind hmc toggle Fixed duplicate append call * Updated experts and witnesses to have mappings * changed utils class back to static and removed mocks * Fixed witnesses * fixed litigation friend * fixed capability to delete all experts/witnesses and add new expert/witnesses when never existed before * postcode * removed unnecessary lines and imports * fixed data going missing for applicant 1 for party id * fixed claim details tab * added ccd data store image in charts * fixed test * Update values.preview.template.yaml --------- Co-authored-by: GarethLancaster <[email protected]> Co-authored-by: sankaviv1 <[email protected]> Co-authored-by: Gareth Lancaster <[email protected]> Co-authored-by: TurkingtonL <[email protected]> Co-authored-by: sankaviv1 <[email protected]> Co-authored-by: AhsanZX97 <[email protected]>
- Loading branch information
1 parent
63d47db
commit 6a276fc
Showing
8 changed files
with
1,362 additions
and
72 deletions.
There are no files selected for viewing
325 changes: 320 additions & 5 deletions
325
...gov/hmcts/reform/civil/handler/callback/user/ManageContactInformationCallbackHandler.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/main/java/uk/gov/hmcts/reform/civil/model/UpdatePartyDetailsForm.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package uk.gov.hmcts.reform.civil.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder(toBuilder = true) | ||
public class UpdatePartyDetailsForm { | ||
|
||
private String firstName; | ||
private String lastName; | ||
private String phoneNumber; | ||
private String emailAddress; | ||
private String partyId; | ||
private String fieldOfExpertise; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.