@open-rlb/ng-app 3.1.66 → 3.1.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1558,10 +1558,8 @@ class AuthenticationService {
1558
1558
  return this.aclStore.loadACL(activeProviderConfig?.acl).pipe(tap(() => this.handleRedirect()), map(() => responses));
1559
1559
  }
1560
1560
  else {
1561
- // dispatch a "guest" state, or just let it proceed
1562
- // TODO consider whether it is worth creating the guest state
1563
- // this.store.dispatch(AuthActions.setGuestUser());
1564
- return of(responses);
1561
+ // GUEST/ANONYMOUS USER: Trigger loadACL with undefined.
1562
+ return this.aclStore.loadACL(undefined).pipe(map(() => responses));
1565
1563
  }
1566
1564
  }));
1567
1565
  }