fix: hotfix 1.0.6

This commit is contained in:
NGPixel
2017-08-10 21:00:18 -04:00
parent a6254364e9
commit a5c7389206
3 changed files with 8 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ module.exports = (confPaths) => {
appconfig.authStrategies = {
list: _.filter(appconfig.auth, ['enabled', true]),
socialEnabled: (_.chain(appconfig.auth).omit('local').filter(['enabled', true]).value().length > 0)
socialEnabled: (_.chain(appconfig.auth).omit(['local', 'ldap']).filter(['enabled', true]).value().length > 0)
}
if (appconfig.authStrategies.list.length < 1) {
console.error(new Error('You must enable at least 1 authentication strategy!'))