diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:32:14 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:32:14 +0200 |
commit | 4ec8975982290f3950d629f0fd7c73f351ead84f (patch) | |
tree | dd7f8f2e33a2b9d9892a385024fc480b12d98e2d /gitlab/v4/objects.py | |
parent | f082568b9a09f117cd88dd18e7582a620540ff95 (diff) | |
download | gitlab-4ec8975982290f3950d629f0fd7c73f351ead84f.tar.gz |
Update some group attributes
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 45d01a0..7f9ca85 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -656,7 +656,8 @@ class GroupProjectManager(ListMixin, RESTManager): _obj_cls = GroupProject _from_parent_attrs = {'group_id': 'id'} _list_filters = ('archived', 'visibility', 'order_by', 'sort', 'search', - 'ci_enabled_first') + 'ci_enabled_first', 'simple', 'owned', 'starred', + 'with_custom_attributes') class GroupSubgroup(RESTObject): @@ -668,7 +669,7 @@ class GroupSubgroupManager(ListMixin, RESTManager): _obj_cls = GroupSubgroup _from_parent_attrs = {'group_id': 'id'} _list_filters = ('skip_groups', 'all_available', 'search', 'order_by', - 'sort', 'statistics', 'owned') + 'sort', 'statistics', 'owned', 'with_custom_attributes') class GroupVariable(SaveMixin, ObjectDeleteMixin, RESTObject): @@ -739,7 +740,7 @@ class GroupManager(CRUDMixin, RESTManager): _path = '/groups' _obj_cls = Group _list_filters = ('skip_groups', 'all_available', 'search', 'order_by', - 'sort', 'statistics', 'owned', 'custom_attributes') + 'sort', 'statistics', 'owned', 'with_custom_attributes') _create_attrs = ( ('name', 'path'), ('description', 'visibility', 'parent_id', 'lfs_enabled', |