fix: Fixed incorrect count of social auth strategies
[ci skip]
This commit is contained in:
parent
86059311e7
commit
6339714b9f
@ -49,7 +49,7 @@ module.exports = (confPaths) => {
|
|||||||
if (appdata.capabilities.manyAuthProviders) {
|
if (appdata.capabilities.manyAuthProviders) {
|
||||||
appconfig.authStrategies = {
|
appconfig.authStrategies = {
|
||||||
list: _.filter(appconfig.auth, ['enabled', true]),
|
list: _.filter(appconfig.auth, ['enabled', true]),
|
||||||
socialEnabled: (_.chain(appconfig.auth).omit('local').reject({ enabled: false }).value().length > 0)
|
socialEnabled: (_.chain(appconfig.auth).omit('local').filter(['enabled', true]).value().length > 0)
|
||||||
}
|
}
|
||||||
if (appconfig.authStrategies.list.length < 1) {
|
if (appconfig.authStrategies.list.length < 1) {
|
||||||
console.error(new Error('You must enable at least 1 authentication strategy!'))
|
console.error(new Error('You must enable at least 1 authentication strategy!'))
|
||||||
|
Loading…
Reference in New Issue
Block a user