Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alivenichoppa committed Nov 29, 2024
1 parent 332a6c8 commit 598c5da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public PostSubmitCallbackResponse handle(Callback<BailCase> callback) {
);

ccdCaseAssignment.assignAccessToCase(callback);
// TODO: uncomment revokeAccessToCase
// ccdCaseAssignment.revokeAccessToCase(callback, organisationIdentifier);
}
if (timedEventServiceEnabled) {
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ security:
caseworker-ia-system:
- "clearLegalRepresentativeDetails"
- "caseListing"
- "endApplication"
- "testTimedEventSchedule"
caseworker-caa:
- "nocRequest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ void should_assign_and_revoke_access_to_case_when_user_is_Lr() {
bailApplicationSubmittedConfirmation.handle(callback);

verify(ccdCaseAssignment, times(1)).assignAccessToCase(callback);
// verify(ccdCaseAssignment, times(1)).revokeAccessToCase(callback, organisationIdentifier);
// TODO: verify(ccdCaseAssignment, times(1)).revokeAccessToCase(callback, organisationIdentifier);
}

@Test
Expand Down

0 comments on commit 598c5da

Please sign in to comment.