I have following scenario that includes Siteminder SSO:
- User is logged in
- User clicks logout
document.location.assign
is set to external URL that will perform session invalidation- Browser visits that external URL and external login form is displayed.
- User hits the back button in browser
Now the problem is, after back button is pressed angular application pops out again without making actual GET request - is the whole apoplication content cached?
Anyway, is there a way to detect that user navigated into page using back button after step 4?
I have checked router events in case of such navigation using
imports: [RouterModule.forRoot(routes,{enableTracing: true}) ]
but none of events are fired