Skip to content

Commit

Permalink
CIV-16553 Removed dashboard notification of Response when app or resp…
Browse files Browse the repository at this point in the history
… responds to application
  • Loading branch information
deepthidoppalapudihmcts committed Feb 3, 2025
1 parent 9b88282 commit 1ef219b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ private CallbackResponse submitClaim(CallbackParams callbackParams) {
// Generate Dashboard Notification for Lip Party
if (gaForLipService.isGaForLip(caseData)) {
docUploadDashboardNotificationService.createDashboardNotification(caseData, role, authToken, false);
docUploadDashboardNotificationService.createResponseDashboardNotification(caseData, "APPLICANT", authToken);
docUploadDashboardNotificationService.createResponseDashboardNotification(caseData, "RESPONDENT", authToken);
}

CaseData updatedCaseData = caseDataBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,6 @@ void shouldCreateDashboardNotificationIfGaForLipIsTrue() {

handler.handle(params);
verify(docUploadDashboardNotificationService).createDashboardNotification(any(CaseData.class), anyString(), anyString(), anyBoolean());
verify(docUploadDashboardNotificationService).createResponseDashboardNotification(any(), eq("RESPONDENT"), anyString());
verify(docUploadDashboardNotificationService).createResponseDashboardNotification(any(), eq("APPLICANT"), anyString());

}

private CaseData getCaseData(AboutToStartOrSubmitCallbackResponse response) {
Expand Down

0 comments on commit 1ef219b

Please sign in to comment.