TF-1018 Add AppGridDashboardOverlay into MailboxDashboardView in web

This commit is contained in:
Dat PHAM HOANG
2022-10-15 00:17:38 +07:00
committed by Dat H. Pham
parent 0104e38431
commit c11df2fe8b
6 changed files with 158 additions and 1 deletions
+8
View File
@@ -4,4 +4,12 @@ class AppConfig {
static String get baseUrl => dotenv.get('SERVER_URL', fallback: '');
static String get domainRedirectUrl => dotenv.get('DOMAIN_REDIRECT_URL', fallback: '');
static String get webOidcClientId => dotenv.get('WEB_OIDC_CLIENT_ID', fallback: '');
static bool get appGridDashboardAvailable {
final supported = dotenv.get('APP_GRID_AVAILABLE', fallback: 'unsupported');
if (supported == 'supported') {
return true;
}
return false;
}
static String appDashboardConfigurationPath = "configurations/app_dashboard.json";
}