fix: oidc module - map() call on undefined; fix unrelate() usage (#5781)
This commit is contained in:
parent
98e199a009
commit
e6bbf9d088
@ -32,13 +32,13 @@ module.exports = {
|
|||||||
if (conf.mapGroups) {
|
if (conf.mapGroups) {
|
||||||
const groups = _.get(profile, '_json.' + conf.groupsClaim)
|
const groups = _.get(profile, '_json.' + conf.groupsClaim)
|
||||||
if (groups && _.isArray(groups)) {
|
if (groups && _.isArray(groups)) {
|
||||||
const currentGroups = (await user.$relatedQuery('groups').select('groups.id')).groups.map(g => g.id)
|
const currentGroups = (await user.$relatedQuery('groups').select('groups.id')).map(g => g.id)
|
||||||
const expectedGroups = Object.values(WIKI.auth.groups).filter(g => groups.includes(g.name)).map(g => g.id)
|
const expectedGroups = Object.values(WIKI.auth.groups).filter(g => groups.includes(g.name)).map(g => g.id)
|
||||||
for (const groupId of _.difference(expectedGroups, currentGroups)) {
|
for (const groupId of _.difference(expectedGroups, currentGroups)) {
|
||||||
await user.$relatedQuery('groups').relate(groupId)
|
await user.$relatedQuery('groups').relate(groupId)
|
||||||
}
|
}
|
||||||
for (const groupId of _.difference(currentGroups, expectedGroups)) {
|
for (const groupId of _.difference(currentGroups, expectedGroups)) {
|
||||||
await user.$relatedQuery('groups').unrelate(groupId)
|
await user.$relatedQuery('groups').unrelate().where('groupId', groupId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user