()
| 1099 | // ------------------------------------------------------------------------- |
| 1100 | |
| 1101 | async getConfig(): Promise<AppConfig> { |
| 1102 | const data = await this.http.get<WireConfig>('/config'); |
| 1103 | return toAppConfig(data); |
| 1104 | } |
| 1105 | |
| 1106 | async setConfig(patch: Partial<AppConfig>): Promise<AppConfig> { |
| 1107 | const wirePatch: Record<string, unknown> = {}; |
nothing calls this directly
no test coverage detected