mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
payment response for adjust seats
This commit is contained in:
@@ -788,8 +788,9 @@ export class ApiService implements ApiServiceAbstraction {
|
||||
return new PaymentResponse(r);
|
||||
}
|
||||
|
||||
postOrganizationSeat(id: string, request: SeatRequest): Promise<any> {
|
||||
return this.send('POST', '/organizations/' + id + '/seat', request, true, false);
|
||||
async postOrganizationSeat(id: string, request: SeatRequest): Promise<PaymentResponse> {
|
||||
const r = await this.send('POST', '/organizations/' + id + '/seat', request, true, true);
|
||||
return new PaymentResponse(r);
|
||||
}
|
||||
|
||||
async postOrganizationStorage(id: string, request: StorageRequest): Promise<PaymentResponse> {
|
||||
|
||||
Reference in New Issue
Block a user