Skip to content
Snippets Groups Projects
Commit 697fcc83 authored by Ambrus Simon's avatar Ambrus Simon
Browse files

re-add roles and tags to group projection

parent 4a434337
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class GroupHandler(base.RequestHandler):
return result
def get_all(self, uid=None):
projection = {'name': 1, 'created': 1, 'modified': 1}
projection = {'name': 1, 'created': 1, 'modified': 1, 'roles': 1, 'tags': 1}
permchecker = groupauth.list_permission_checker(self, uid)
results = permchecker(self.storage.exec_op)('GET', projection=projection)
if not self.superuser_request and not self.is_true('join_avatars'):
......
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