(sessionId: string, namespace: string)
| 195 | } |
| 196 | |
| 197 | getSessionByNamespace(sessionId: string, namespace: string): Session | undefined { |
| 198 | const session = this.sessionCache.getSessionByNamespace(sessionId, namespace) |
| 199 | ?? this.sessionCache.refreshSession(sessionId) |
| 200 | if (!session || session.namespace !== namespace) { |
| 201 | return undefined |
| 202 | } |
| 203 | return session |
| 204 | } |
| 205 | |
| 206 | resolveSessionAccess( |
| 207 | sessionId: string, |
no test coverage detected