TF-1018 Add AppGridDashboardOverlay into MailboxDashboardView in web
This commit is contained in:
committed by
Dat H. Pham
parent
0104e38431
commit
c11df2fe8b
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user