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):
1408
1408
"statistics" ,
1409
1409
"owned" ,
1410
1410
"with_custom_attributes" ,
1411
+ "min_access_level" ,
1411
1412
)
1412
1413
_create_attrs = (
1413
1414
("name" , "path" ),
1414
1415
(
1415
1416
"description" ,
1417
+ "membership_lock" ,
1416
1418
"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" ,
1418
1428
"lfs_enabled" ,
1419
1429
"request_access_enabled" ,
1430
+ "parent_id" ,
1431
+ "default_branch_protection" ,
1420
1432
),
1421
1433
)
1422
1434
_update_attrs = (
@@ -1425,9 +1437,20 @@ class GroupManager(CRUDMixin, RESTManager):
1425
1437
"name" ,
1426
1438
"path" ,
1427
1439
"description" ,
1440
+ "membership_lock" ,
1441
+ "share_with_group_lock" ,
1428
1442
"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" ,
1429
1451
"lfs_enabled" ,
1430
1452
"request_access_enabled" ,
1453
+ "default_branch_protection" ,
1431
1454
),
1432
1455
)
1433
1456
You can’t perform that action at this time.
0 commit comments