(
@Inject(STORE_DIR) storeDir: string,
private readonly store: StoreService,
)
| 10 | private readonly cipher: KeyCipher; |
| 11 | |
| 12 | constructor( |
| 13 | @Inject(STORE_DIR) storeDir: string, |
| 14 | private readonly store: StoreService, |
| 15 | ) { |
| 16 | this.cipher = new KeyCipher(storeDir); |
| 17 | } |
| 18 | |
| 19 | /** Provider key status for a user (masked — never returns secret material). */ |
| 20 | listMasked(userId: string): Array<{ env: string; provider: string; set: boolean }> { |
nothing calls this directly
no outgoing calls
no test coverage detected