File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed
Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments