From d20ff4ff7427519c8abccf53e3213e8929905441 Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Sat, 1 May 2021 12:20:37 +0200 Subject: fix(objects): add missing group attributes --- gitlab/v4/objects/groups.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gitlab/v4/objects/groups.py') diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py index bc83889..4a84e99 100644 --- a/gitlab/v4/objects/groups.py +++ b/gitlab/v4/objects/groups.py @@ -201,6 +201,7 @@ class GroupManager(CRUDMixin, RESTManager): "owned", "with_custom_attributes", "min_access_level", + "top_level_only", ) _create_attrs = RequiredOptional( required=("name", "path"), @@ -221,6 +222,8 @@ class GroupManager(CRUDMixin, RESTManager): "request_access_enabled", "parent_id", "default_branch_protection", + "shared_runners_minutes_limit", + "extra_shared_runners_minutes_limit", ), ) _update_attrs = RequiredOptional( @@ -242,6 +245,11 @@ class GroupManager(CRUDMixin, RESTManager): "lfs_enabled", "request_access_enabled", "default_branch_protection", + "file_template_project_id", + "shared_runners_minutes_limit", + "extra_shared_runners_minutes_limit", + "prevent_forking_outside_group", + "shared_runners_setting", ), ) _types = {"avatar": types.ImageAttribute} @@ -292,4 +300,5 @@ class GroupSubgroupManager(ListMixin, RESTManager): "statistics", "owned", "with_custom_attributes", + "min_access_level", ) -- cgit v1.2.1