Skip to content

Commit 5061972

Browse files
Merge pull request #1438 from python-gitlab/fix/missing-group-attributes
fix(objects): add missing group attributes
2 parents 1e6305e + d20ff4f commit 5061972

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

gitlab/v4/objects/groups.py

+9
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ class GroupManager(CRUDMixin, RESTManager):
201201
"owned",
202202
"with_custom_attributes",
203203
"min_access_level",
204+
"top_level_only",
204205
)
205206
_create_attrs = RequiredOptional(
206207
required=("name", "path"),
@@ -221,6 +222,8 @@ class GroupManager(CRUDMixin, RESTManager):
221222
"request_access_enabled",
222223
"parent_id",
223224
"default_branch_protection",
225+
"shared_runners_minutes_limit",
226+
"extra_shared_runners_minutes_limit",
224227
),
225228
)
226229
_update_attrs = RequiredOptional(
@@ -242,6 +245,11 @@ class GroupManager(CRUDMixin, RESTManager):
242245
"lfs_enabled",
243246
"request_access_enabled",
244247
"default_branch_protection",
248+
"file_template_project_id",
249+
"shared_runners_minutes_limit",
250+
"extra_shared_runners_minutes_limit",
251+
"prevent_forking_outside_group",
252+
"shared_runners_setting",
245253
),
246254
)
247255
_types = {"avatar": types.ImageAttribute}
@@ -292,4 +300,5 @@ class GroupSubgroupManager(ListMixin, RESTManager):
292300
"statistics",
293301
"owned",
294302
"with_custom_attributes",
303+
"min_access_level",
295304
)

0 commit comments

Comments
 (0)