(path: string, body?: Body)
| 74 | } |
| 75 | |
| 76 | async patch<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 77 | return await this.do("PATCH", path, body); |
| 78 | } |
| 79 | |
| 80 | async getCurrentUser(): Promise<ApiResult<User>> { |
| 81 | return await this.get("/api/current_user"); |
no test coverage detected