* Force-kill a session immediately (used by the REST API).
(token: string)
| 319 | * Force-kill a session immediately (used by the REST API). |
| 320 | */ |
| 321 | destroySession(token: string): void { |
| 322 | this.store.destroy(token); |
| 323 | } |
| 324 | |
| 325 | destroyAll(): void { |
| 326 | this.store.destroyAll(); |
no test coverage detected