mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 00:27:17 +00:00
Update removeUserFromProject
to account for token-access
This commit is contained in:
parent
6feedf5520
commit
16416463c6
2 changed files with 9 additions and 2 deletions
|
@ -158,7 +158,11 @@ module.exports = CollaboratorsHandler =
|
|||
logger.log user_id: user_id, project_id: project_id, "removing user"
|
||||
conditions = _id:project_id
|
||||
update = $pull:{}
|
||||
update["$pull"] = collaberator_refs:user_id, readOnly_refs:user_id
|
||||
update["$pull"] =
|
||||
collaberator_refs:user_id,
|
||||
readOnly_refs:user_id
|
||||
tokenAccessReadOnly_refs:user_id
|
||||
tokenAccessReadAndWrite_refs:user_id
|
||||
Project.update conditions, update, (err)->
|
||||
if err?
|
||||
logger.error err: err, "problem removing user from project collaberators"
|
||||
|
|
|
@ -223,7 +223,10 @@ describe "CollaboratorsHandler", ->
|
|||
.calledWith({
|
||||
_id: @project_id
|
||||
}, {
|
||||
"$pull":{collaberator_refs:@user_id, readOnly_refs:@user_id}
|
||||
"$pull":{
|
||||
collaberator_refs:@user_id, readOnly_refs:@user_id,
|
||||
tokenAccessReadOnly_refs:@user_id, tokenAccessReadAndWrite_refs:@user_id
|
||||
}
|
||||
})
|
||||
.should.equal true
|
||||
|
||||
|
|
Loading…
Reference in a new issue