brand-assets
Version:
23 lines (15 loc) • 650 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),
restrictTesterListByTag: getenv.bool('MESH_CONFIG_restrictTesterListByTag', false)
},
private: {
}
};