()
| 484 | // Global Settings Management |
| 485 | |
| 486 | public getConfiguration(): RooCodeSettings { |
| 487 | return Object.fromEntries( |
| 488 | Object.entries(this.sidebarProvider.getValues()).filter(([key]) => !isSecretStateKey(key)), |
| 489 | ) |
| 490 | } |
| 491 | |
| 492 | public async setConfiguration(values: RooCodeSettings) { |
| 493 | await this.sidebarProvider.contextProxy.setValues(values) |
no test coverage detected