Skip to content
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d3d52f8
initial commit
bergomi02 Jun 9, 2026
ff025dc
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 11, 2026
ef25ed3
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 11, 2026
3b0f511
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 12, 2026
e8d59e0
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 16, 2026
cdc5aad
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 18, 2026
0173362
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 23, 2026
9091faf
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 23, 2026
008d854
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 24, 2026
82d1a10
initial commit
bergomi02 Jun 26, 2026
31bea98
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 30, 2026
484087b
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jun 30, 2026
24f0068
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jul 3, 2026
959b1f3
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jul 20, 2026
1e0d5f9
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jul 21, 2026
761b13d
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jul 21, 2026
1975859
Merge branch 'develop' of https://github.com/bcgov/moh-prime into dev…
bergomi02 Jul 22, 2026
3f45851
logic fix
bergomi02 Jul 24, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class IdentityInsuranceLevelGuard {
return this.authService.getUser$()
.pipe(
map((user: BcscUser) => user.identityInsuranceLevel),
map((identityInsuranceLevel: number) => identityInsuranceLevel < 3),
map((identityInsuranceLevel: number) => identityInsuranceLevel !== 3),
map((unauthorized: boolean) => {
if (unauthorized) {
this.router.navigate([AppRoutes.IDENTITY_INSURANCE_LEVEL]);
Expand Down
Loading