extensions - fully provide keytar API

This commit is contained in:
Benjamin Pasero
2019-08-28 15:08:51 +02:00
parent b05051e549
commit fa7eba4888
7 changed files with 33 additions and 11 deletions

View File

@@ -31,6 +31,10 @@ export class MainThreadKeytar implements MainThreadKeytarShape {
return this._credentialsService.findPassword(service);
}
async $findCredentials(service: string): Promise<Array<{ account: string, password: string }>> {
return this._credentialsService.findCredentials(service);
}
dispose(): void {
//
}