summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py25
1 files changed, 24 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 8852a1e..0b95944 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1408,15 +1408,27 @@ class GroupManager(CRUDMixin, RESTManager):
"statistics",
"owned",
"with_custom_attributes",
+ "min_access_level",
)
_create_attrs = (
("name", "path"),
(
"description",
+ "membership_lock",
"visibility",
- "parent_id",
+ "share_with_group_lock",
+ "require_two_factor_authentication",
+ "two_factor_grace_period",
+ "project_creation_level",
+ "auto_devops_enabled",
+ "subgroup_creation_level",
+ "emails_disabled",
+ "avatar",
+ "mentions_disabled",
"lfs_enabled",
"request_access_enabled",
+ "parent_id",
+ "default_branch_protection",
),
)
_update_attrs = (
@@ -1425,9 +1437,20 @@ class GroupManager(CRUDMixin, RESTManager):
"name",
"path",
"description",
+ "membership_lock",
+ "share_with_group_lock",
"visibility",
+ "require_two_factor_authentication",
+ "two_factor_grace_period",
+ "project_creation_level",
+ "auto_devops_enabled",
+ "subgroup_creation_level",
+ "emails_disabled",
+ "avatar",
+ "mentions_disabled",
"lfs_enabled",
"request_access_enabled",
+ "default_branch_protection",
),
)