mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
add storage gb info to org
This commit is contained in:
@@ -18,6 +18,7 @@ export class OrganizationData {
|
||||
usersGetPremium: boolean;
|
||||
seats: number;
|
||||
maxCollections: number;
|
||||
maxStorageGb?: number;
|
||||
|
||||
constructor(response: ProfileOrganizationResponse) {
|
||||
this.id = response.id;
|
||||
@@ -34,5 +35,6 @@ export class OrganizationData {
|
||||
this.usersGetPremium = response.usersGetPremium;
|
||||
this.seats = response.seats;
|
||||
this.maxCollections = response.maxCollections;
|
||||
this.maxStorageGb = response.maxStorageGb;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user