()
| 245 | } |
| 246 | |
| 247 | function getServerSession(): Promise<ServerSessionStatus> { |
| 248 | return jsonRequest<ServerSessionStatus>('/session') |
| 249 | } |
| 250 | |
| 251 | function loginServerSession(token: string): Promise<ServerSessionStatus> { |
| 252 | return jsonRequest<ServerSessionStatus>('/session/login', { |
nothing calls this directly
no test coverage detected