Skip to content

Commit

Permalink
fix: auto login guard passes correct config id
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver committed Sep 19, 2024
1 parent 20ac4eb commit 7327887
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export class AutoLoginPartialRoutesGuard {

export function autoLoginPartialRoutesGuard(
route?: ActivatedRouteSnapshot,
state?: RouterStateSnapshot,
configId?: string
): Observable<boolean> {
const configurationService = inject(ConfigurationService);
Expand Down Expand Up @@ -106,9 +107,12 @@ export function autoLoginPartialRoutesGuard(

export function autoLoginPartialRoutesGuardWithConfig(
configId: string
): (route?: ActivatedRouteSnapshot) => Observable<boolean> {
return (route?: ActivatedRouteSnapshot) =>
autoLoginPartialRoutesGuard(route, configId);
): (
route?: ActivatedRouteSnapshot,
state?: RouterStateSnapshot
) => Observable<boolean> {
return (route?: ActivatedRouteSnapshot, state?: RouterStateSnapshot) =>
autoLoginPartialRoutesGuard(route, state, configId);
}

function checkAuth(
Expand Down

1 comment on commit 7327887

@kyubisation
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@timdeschryver Thanks for fixing this oversight 👍

Please sign in to comment.