fix loading space that user is member of

This commit is contained in:
mntmn 2020-04-09 16:20:29 +02:00
parent bdb2e9fde5
commit 01a6bec80e
1 changed files with 2 additions and 2 deletions

View File

@ -285,14 +285,14 @@ module.exports = {
} else {
var findMembershipsForSpace = function(space, allMemberships, prevRole) {
Membership.findAll({ where: {
"space": space._id
"space_id": space._id
}}).then(function(parentMemberships) {
var currentMemberships = parentMemberships.concat(allMemberships);
if (space.parent_space_id) {
Space.findOne({ where: {
"_id": space.parent_space_id
}}, function(err, parentSpace) {
}}).then(function(parentSpace) {
findMembershipsForSpace(parentSpace, currentMemberships, prevRole);
});
} else {