We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6680a9b commit 8ab3befCopy full SHA for 8ab3bef
1 file changed
packages/web-runtime/src/container/sse/common.ts
@@ -1,11 +1,6 @@
1
import { SSEEventOptions } from './types'
2
3
export const onSSEBackchannelLogoutEvent = ({ router, authStore, sseData }: SSEEventOptions) => {
4
- if (!sseData.sessionid) {
5
- // Log out all clients when no session id is provided according to OIDC spec
6
- return router.push({ name: 'logout' })
7
- }
8
-
9
if (authStore.sessionId === sseData.sessionid) {
10
return router.push({ name: 'logout' })
11
}
0 commit comments