diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-12-31 09:56:36 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-12-31 09:56:36 +0100 |
commit | 81c9d1f95ef710ccd2472bc9fe4267d8a8be4ae1 (patch) | |
tree | a9cba98b4027b72a5915f040efcea21341793b77 | |
parent | 79d2ca4bcc29fa0e30a44940adb7491a84e8b573 (diff) | |
download | gitlab-81c9d1f95ef710ccd2472bc9fe4267d8a8be4ae1.tar.gz |
Add groups listing attributes
-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', |