1
0
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:
Kyle Spearrin
2018-07-10 09:19:15 -04:00
parent 049e129f36
commit 36ab2ec78b
3 changed files with 40 additions and 0 deletions

View File

@@ -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;