Browse Source

feat: add new type named CurrentTenant

pull/6116/head
mehmet-erim 6 years ago
parent
commit
d9f640d233
  1. 7
      npm/ng-packs/packages/core/src/lib/models/application-configuration.ts

7
npm/ng-packs/packages/core/src/lib/models/application-configuration.ts

@ -6,6 +6,7 @@ export namespace ApplicationConfiguration {
auth: Auth;
setting: Value;
currentUser: CurrentUser;
currentTenant: CurrentTenant;
features: Value;
}
@ -74,4 +75,10 @@ export namespace ApplicationConfiguration {
phoneNumberVerified: boolean;
surName: string;
}
export interface CurrentTenant {
id: string;
name: string;
isAvailable?: boolean;
}
}

Loading…
Cancel
Save