brand-assets
Version:
25 lines (17 loc) • 793 B
JavaScript
var getenv = require('getenv');
module.exports = {
public: {
// Site supports multiple brands
multiTenant: true,
// Max number of successive failures before lockout begins
accountLockMaxFailures: getenv.int('MESH_CONFIG_accountLockMaxFailures', 10),
// Length of time the account is locked
accountLockPeriodMins: getenv.int('MESH_CONFIG_accountLockPeriodMins', 1),
brandUserImpersonationEnabled: getenv.bool('MESH_CONFIG_brandUserImpersonationEnabled', false),
// Whether to have separate users for fit vs. wear tests
fitSpecificUsers: getenv.bool('MESH_CONFIG_fitSpecificUsers', false),
restrictTesterListByTag: getenv.bool('MESH_CONFIG_restrictTesterListByTag', false)
},
private: {
}
};