From 81c9d1f95ef710ccd2472bc9fe4267d8a8be4ae1 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Sun, 31 Dec 2017 09:56:36 +0100 Subject: Add groups listing attributes --- gitlab/v4/objects.py | 2 ++ 1 file changed, 2 insertions(+) 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', -- cgit v1.2.1