summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-12-31 09:56:36 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2017-12-31 09:56:36 +0100
commit81c9d1f95ef710ccd2472bc9fe4267d8a8be4ae1 (patch)
treea9cba98b4027b72a5915f040efcea21341793b77 /gitlab/v4/objects.py
parent79d2ca4bcc29fa0e30a44940adb7491a84e8b573 (diff)
downloadgitlab-81c9d1f95ef710ccd2472bc9fe4267d8a8be4ae1.tar.gz
Add groups listing attributes
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 78a3b25..4cd1401 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -598,6 +598,8 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
class GroupManager(CRUDMixin, RESTManager):
_path = '/groups'
_obj_cls = Group
+ _list_filters = ('skip_groups', 'all_available', 'search', 'order_by',
+ 'sort', 'statistics', 'owned')
_create_attrs = (
('name', 'path'),
('description', 'visibility', 'parent_id', 'lfs_enabled',