diff --git a/core-customize/hybris/bin/custom/sapcxtools/sapcxsinglesignon/README.md b/core-customize/hybris/bin/custom/sapcxtools/sapcxsinglesignon/README.md index a517df8..f3e1672 100644 --- a/core-customize/hybris/bin/custom/sapcxtools/sapcxsinglesignon/README.md +++ b/core-customize/hybris/bin/custom/sapcxtools/sapcxsinglesignon/README.md @@ -91,24 +91,20 @@ import { Observable, of } from 'rxjs'; import { catchError, map, switchMap, take } from 'rxjs/operators'; @Injectable() -export class KronosLogoutGuard extends LogoutGuard { +export class CustomLogoutGuard extends LogoutGuard { constructor( protected auth: AuthService, protected cms: CmsService, protected semanticPathService: SemanticPathService, protected protectedRoutes: ProtectedRoutesService, protected router: Router, - protected authRedirectService: AuthRedirectService, protected http: HttpClient, protected endpointsService: OccEndpointsService ) { - super(auth, cms, semanticPathService, protectedRoutes, router, authRedirectService); + super(auth, cms, semanticPathService, protectedRoutes, router); } canActivate(): Observable { - // Logout route should never be remembered by guard - this.authRedirectService.reportNotAuthGuard(); - /** * Note: * We must wait until the access token was revoked from the backend before