We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e33567 + 2c80f80 commit b2db7bfCopy full SHA for b2db7bf
docs-src/session-checks.md
@@ -33,7 +33,7 @@ export const authConfig: AuthConfig = {
33
To get notified, you can hook up for the event ``session_terminated``:
34
35
```TypeScript
36
-this.oauthService.events.filter(e => e.type === 'session_terminated').subscribe(e => {
37
-console.debug('Your session has been terminated!');
+this.oauthService.events.pipe(filter(e => e.type === 'session_terminated')).subscribe(e => {
+ console.debug('Your session has been terminated!');
38
})
39
-```
+```
0 commit comments