From d9f640d2334e50e2fed70a08521d485c27bb2fad Mon Sep 17 00:00:00 2001 From: mehmet-erim Date: Mon, 9 Nov 2020 08:36:55 +0300 Subject: [PATCH] feat: add new type named CurrentTenant --- .../core/src/lib/models/application-configuration.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/npm/ng-packs/packages/core/src/lib/models/application-configuration.ts b/npm/ng-packs/packages/core/src/lib/models/application-configuration.ts index c974f842a2..0e10b12752 100644 --- a/npm/ng-packs/packages/core/src/lib/models/application-configuration.ts +++ b/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; + } }