(
private readonly keys: KeysService,
private readonly engine: EngineService,
)
| 7 | @Controller("keys") |
| 8 | export class KeysController { |
| 9 | constructor( |
| 10 | private readonly keys: KeysService, |
| 11 | private readonly engine: EngineService, |
| 12 | ) {} |
| 13 | |
| 14 | /** List which provider keys this user has set (masked — never the secret). */ |
| 15 | @Get() |
nothing calls this directly
no outgoing calls
no test coverage detected