1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-05 18:13:26 +00:00

getEnterprisePortalSignInToken api (#105)

This commit is contained in:
Kyle Spearrin
2020-05-27 15:21:53 -04:00
committed by GitHub
parent 2858724f44
commit 1bbd808105
2 changed files with 6 additions and 0 deletions

View File

@@ -321,6 +321,11 @@ export class ApiService implements ApiServiceAbstraction {
return this.send('POST', '/accounts/kdf', request, true, false);
}
async getEnterprisePortalSignInToken(): Promise<string> {
const r = await this.send('GET', '/accounts/enterprise-portal-signin-token', null, true, true);
return r as string;
}
// Folder APIs
async getFolder(id: string): Promise<FolderResponse> {