Added idle times in environment files

This commit is contained in:
Erik Tiekstra
2021-12-02 09:54:21 +01:00
parent 395452e60e
commit 4dfbaf3ad9
6 changed files with 30 additions and 8 deletions
@@ -17,4 +17,8 @@ export const environment: Environment = {
environment: 'ACC',
},
ciam: CIAM_TEST,
idle: {
idleAfterMS: 10 * 60 * 1000, // 10 minutes
logoutAfterMS: 2 * 60 * 1000, // 2 minutes
},
};
@@ -13,4 +13,8 @@ export const environment: Environment = {
},
activeFeatures: [...ACTIVE_FEATURES_TEST, Feature.MOCK_LOGIN],
ciam: CIAM_MOCK,
idle: {
idleAfterMS: 10 * 60 * 1000, // 10 minutes
logoutAfterMS: 2 * 60 * 1000, // 2 minutes
},
};
@@ -17,4 +17,8 @@ export const environment: Environment = {
environment: 'PROD',
},
ciam: CIAM_PROD,
idle: {
idleAfterMS: 10 * 60 * 1000, // 10 minutes
logoutAfterMS: 2 * 60 * 1000, // 2 minutes
},
};
@@ -17,4 +17,8 @@ export const environment: Environment = {
environment: 'DEV',
},
ciam: CIAM_TEST,
idle: {
idleAfterMS: 60 * 60 * 1000, // 60 minutes
logoutAfterMS: 10 * 60 * 1000, // 10 minutes
},
};