From 697fcc83008b4aa229e79a56e9325c8305aef7c0 Mon Sep 17 00:00:00 2001 From: Ambrus Simon <ambrussimon@invenshure.com> Date: Wed, 7 Jun 2017 15:57:03 +0200 Subject: [PATCH] re-add roles and tags to group projection --- api/handlers/grouphandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/handlers/grouphandler.py b/api/handlers/grouphandler.py index e77fba43..bb9c054e 100644 --- a/api/handlers/grouphandler.py +++ b/api/handlers/grouphandler.py @@ -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'): -- GitLab