Skip to content
Snippets Groups Projects
Commit 4e832d7a authored by Harsha Kethineni's avatar Harsha Kethineni
Browse files

post will update current perms

parent 59133f86
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,8 @@ def propagate_changes(cont_name, _id, query, update, oper=None):
# Apply change to projects
if cont_name == 'groups' and oper:
if oper == 'POST':
config.db.projects.update_many({'group': _id}, {'$addToSet': {'permissions': update}})
config.db.projects.update_many({'group': _id, 'permissions._id' : update['_id']}, {'$set': {'permissions.$.access': update['access']}})
config.db.projects.update_many({'group': _id, 'permissions._id' : {'$ne': update['_id']}}, {'$addToSet': {'permissions': update}})
elif oper == 'PUT':
config.db.projects.update_many({'group': _id, 'permissions._id' : update['_id']}, {'$set': {'permissions.$.access': update['access']}})
elif oper == 'DELETE':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment