1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

org update license api

This commit is contained in:
Kyle Spearrin
2018-07-17 22:50:04 -04:00
parent f35ecf0cd8
commit 493770510f
2 changed files with 5 additions and 0 deletions

View File

@@ -669,6 +669,10 @@ export class ApiService implements ApiServiceAbstraction {
return new OrganizationResponse(r);
}
async postOrganizationLicenseUpdate(id: string, data: FormData): Promise<any> {
return this.send('POST', '/organizations/' + id + '/license', data, true, false);
}
postOrganizationSeat(id: string, request: SeatRequest): Promise<any> {
return this.send('POST', '/organizations/' + id + '/seat', request, true, false);
}