more usepolicies
This commit is contained in:
parent
ca6f235a34
commit
6c8407196b
|
@ -9,6 +9,7 @@ export class OrganizationData {
|
||||||
status: OrganizationUserStatusType;
|
status: OrganizationUserStatusType;
|
||||||
type: OrganizationUserType;
|
type: OrganizationUserType;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
usePolicies: boolean;
|
||||||
useGroups: boolean;
|
useGroups: boolean;
|
||||||
useDirectory: boolean;
|
useDirectory: boolean;
|
||||||
useEvents: boolean;
|
useEvents: boolean;
|
||||||
|
@ -27,6 +28,7 @@ export class OrganizationData {
|
||||||
this.status = response.status;
|
this.status = response.status;
|
||||||
this.type = response.type;
|
this.type = response.type;
|
||||||
this.enabled = response.enabled;
|
this.enabled = response.enabled;
|
||||||
|
this.usePolicies = response.usePolicies;
|
||||||
this.useGroups = response.useGroups;
|
this.useGroups = response.useGroups;
|
||||||
this.useDirectory = response.useDirectory;
|
this.useDirectory = response.useDirectory;
|
||||||
this.useEvents = response.useEvents;
|
this.useEvents = response.useEvents;
|
||||||
|
|
|
@ -9,6 +9,7 @@ export class Organization {
|
||||||
status: OrganizationUserStatusType;
|
status: OrganizationUserStatusType;
|
||||||
type: OrganizationUserType;
|
type: OrganizationUserType;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
usePolicies: boolean;
|
||||||
useGroups: boolean;
|
useGroups: boolean;
|
||||||
useDirectory: boolean;
|
useDirectory: boolean;
|
||||||
useEvents: boolean;
|
useEvents: boolean;
|
||||||
|
@ -31,6 +32,7 @@ export class Organization {
|
||||||
this.status = obj.status;
|
this.status = obj.status;
|
||||||
this.type = obj.type;
|
this.type = obj.type;
|
||||||
this.enabled = obj.enabled;
|
this.enabled = obj.enabled;
|
||||||
|
this.usePolicies = obj.usePolicies;
|
||||||
this.useGroups = obj.useGroups;
|
this.useGroups = obj.useGroups;
|
||||||
this.useDirectory = obj.useDirectory;
|
this.useDirectory = obj.useDirectory;
|
||||||
this.useEvents = obj.useEvents;
|
this.useEvents = obj.useEvents;
|
||||||
|
|
Loading…
Reference in New Issue