You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add support for patch method in API
* feat: implement update functionality for protected branches in API
* refactor: refactor access level updates for protected branches in API
* fix: add missing items in PublicAPI.Unshipped.txt
* test: enhance ProtectedBranchTests to validate protected branch update
* fix: update new AccessLevelInfo properties to nullable types
* test: fix tests
* test: re-enable NGitLabRetry for ProtectBranch_Test
// Update protected branch - test delete and update
48
+
varprotectedBranchUpdate=newProtectedBranchUpdate
49
+
{
50
+
AllowForcePush=false,
51
+
AllowedToPush=new[]
52
+
{
53
+
newAccessLevelUpdate{Id=existingBranch.PushAccessLevels.First(l =>l.AccessLevel==AccessLevel.Admin).Id,Destroy=true,},// This existing one should be deleted
54
+
},
55
+
AllowedToMerge=new[]
56
+
{
57
+
newAccessLevelUpdate{Id=existingBranch.MergeAccessLevels.First(l =>l.AccessLevel==AccessLevel.Admin).Id,AccessLevel=AccessLevel.Maintainer}// The existing one should be updated
0 commit comments