Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict solicitor access from children/respondents events #5835

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
missing bean
  • Loading branch information
DanCatchpole committed Feb 7, 2025
commit 54868b204aebaa21d38cb8b5670c1e43ad7792f0
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import uk.gov.hmcts.reform.fpl.model.Representative;
import uk.gov.hmcts.reform.fpl.model.Respondent;
import uk.gov.hmcts.reform.fpl.model.RespondentParty;
import uk.gov.hmcts.reform.fpl.service.CaseRoleLookupService;
import uk.gov.hmcts.reform.fpl.service.CaseService;
import uk.gov.hmcts.reform.fpl.service.CaseUrlService;
import uk.gov.hmcts.reform.fpl.service.OrganisationService;
Expand Down Expand Up @@ -41,7 +42,7 @@
})
@MockBeans({
@MockBean(CaseService.class), @MockBean(OrganisationService.class), @MockBean(RepresentativeCaseRoleService.class),
@MockBean(ValidateEmailService.class)
@MockBean(ValidateEmailService.class), @MockBean(CaseRoleLookupService.class)
})
class PartyAddedToCaseEventHandlerEmailTemplateTest extends EmailTemplateTest {
private static final String RESPONDENT_LAST_NAME = "Perturabo";
Expand Down