Skip to content

Commit fa34f5e

Browse files
max-wittignejch
andauthored
chore(group): update group_manager attributes (python-gitlab#1062)
* chore(group): update group_manager attributes Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com>
1 parent 50fcd12 commit fa34f5e

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

gitlab/v4/objects.py

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,15 +1408,27 @@ class GroupManager(CRUDMixin, RESTManager):
14081408
"statistics",
14091409
"owned",
14101410
"with_custom_attributes",
1411+
"min_access_level",
14111412
)
14121413
_create_attrs = (
14131414
("name", "path"),
14141415
(
14151416
"description",
1417+
"membership_lock",
14161418
"visibility",
1417-
"parent_id",
1419+
"share_with_group_lock",
1420+
"require_two_factor_authentication",
1421+
"two_factor_grace_period",
1422+
"project_creation_level",
1423+
"auto_devops_enabled",
1424+
"subgroup_creation_level",
1425+
"emails_disabled",
1426+
"avatar",
1427+
"mentions_disabled",
14181428
"lfs_enabled",
14191429
"request_access_enabled",
1430+
"parent_id",
1431+
"default_branch_protection",
14201432
),
14211433
)
14221434
_update_attrs = (
@@ -1425,9 +1437,20 @@ class GroupManager(CRUDMixin, RESTManager):
14251437
"name",
14261438
"path",
14271439
"description",
1440+
"membership_lock",
1441+
"share_with_group_lock",
14281442
"visibility",
1443+
"require_two_factor_authentication",
1444+
"two_factor_grace_period",
1445+
"project_creation_level",
1446+
"auto_devops_enabled",
1447+
"subgroup_creation_level",
1448+
"emails_disabled",
1449+
"avatar",
1450+
"mentions_disabled",
14291451
"lfs_enabled",
14301452
"request_access_enabled",
1453+
"default_branch_protection",
14311454
),
14321455
)
14331456

0 commit comments

Comments
 (0)