diff options
-rw-r--r-- | gitlab/v4/objects.py | 2 |
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', |