(sessionId: string)
| 26 | |
| 27 | // Remove a session |
| 28 | removeSession(sessionId: string): boolean { |
| 29 | return this.sessions.delete(sessionId); |
| 30 | } |
| 31 | |
| 32 | // Check if token needs refresh and refresh it |
| 33 | async refreshIfNeeded(sessionId: string): Promise<boolean> { |
nothing calls this directly
no outgoing calls
no test coverage detected