1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

fixes to getPoliciesByToken (#81)

This commit is contained in:
Kyle Spearrin
2020-03-02 11:37:44 -05:00
committed by GitHub
parent 4aecc53dde
commit 0f699515a4

View File

@@ -566,8 +566,9 @@ export class ApiService implements ApiServiceAbstraction {
async getPoliciesByToken(organizationId: string, token: string, email: string, organizationUserId: string):
Promise<ListResponse<PolicyResponse>> {
const r = await this.send('GET', '/organizations/' + organizationId + '/policies?token=' + token +
'&email=' + email + '&organizationUserId=' + organizationUserId, null, false, true);
const r = await this.send('GET', '/organizations/' + organizationId + '/policies/token?' +
'token=' + encodeURIComponent(token) + '&email=' + encodeURIComponent(email) +
'&organizationUserId=' + organizationUserId, null, false, true);
return new ListResponse(r, PolicyResponse);
}