mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
add missing permissions to organization objs
This commit is contained in:
@@ -9,6 +9,8 @@ export class ProfileOrganizationResponse {
|
||||
useEvents: boolean;
|
||||
useTotp: boolean;
|
||||
use2fa: boolean;
|
||||
selfHost: boolean;
|
||||
usersGetPremium: boolean;
|
||||
seats: number;
|
||||
maxCollections: number;
|
||||
maxStorageGb?: number;
|
||||
@@ -25,6 +27,8 @@ export class ProfileOrganizationResponse {
|
||||
this.useEvents = response.UseEvents;
|
||||
this.useTotp = response.UseTotp;
|
||||
this.use2fa = response.Use2fa;
|
||||
this.selfHost = response.SelfHost;
|
||||
this.usersGetPremium = response.UsersGetPremium;
|
||||
this.seats = response.Seats;
|
||||
this.maxCollections = response.MaxCollections;
|
||||
this.maxStorageGb = response.MaxStorageGb;
|
||||
|
||||
Reference in New Issue
Block a user