diff --git a/services/web/app/coffee/Features/Collaborators/CollaboratorsHandler.coffee b/services/web/app/coffee/Features/Collaborators/CollaboratorsHandler.coffee index 9de0935783..38315c5140 100644 --- a/services/web/app/coffee/Features/Collaborators/CollaboratorsHandler.coffee +++ b/services/web/app/coffee/Features/Collaborators/CollaboratorsHandler.coffee @@ -30,7 +30,7 @@ module.exports = CollaboratorsHandler = return callback(error) if error? return callback null, members.map (m) -> m.id - USER_PROJECTION: { _id: 1, email: 1 } + USER_PROJECTION: { _id: 1, email: 1, features: 1} getMembersWithPrivilegeLevels: (project_id, callback = (error, members) ->) -> CollaboratorsHandler.getMemberIdsWithPrivilegeLevels project_id, (error, members = []) -> return callback(error) if error?