brand-assets
Version:
26 lines (17 loc) • 793 B
JavaScript
var getenv = require('getenv');
module.exports = {
public: {
// Site supports multiple brands
multiTenant: false,
// 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', true),
// Whether to have separate users for fit vs. wear tests
fitSpecificUsers: getenv.bool('MESH_CONFIG_fitSpecificUsers', true),
restrictTesterListByTag: getenv.bool('MESH_CONFIG_restrictTesterListByTag', false)
},
private: {
}
};