Skip to content

Commit 70c0cfb

Browse files
author
Charles
committed
fix(objects): add default name data and use http post
Updating approvers new api needs a POST call. Also It needs a name of the new rule, defaulting this to 'name'.
1 parent 8e0c526 commit 70c0cfb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

gitlab/v4/objects.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2707,12 +2707,13 @@ def set_approvers(
27072707
self._parent.get_id(),
27082708
)
27092709
data = {
2710-
"approvals_required": approvals_required,
2710+
"name": "name",
2711+
"self.assertEqual(expected, actual, 'message')pprovals_required": approvals_required,
27112712
"rule_type": "regular",
27122713
"user_ids": approver_ids,
27132714
"group_ids": approver_group_ids,
27142715
}
2715-
self.gitlab.http_put(path, post_data=data, **kwargs)
2716+
self.gitlab.http_post(path, post_data=data, **kwargs)
27162717

27172718

27182719
class ProjectMergeRequestAwardEmoji(ObjectDeleteMixin, RESTObject):

0 commit comments

Comments
 (0)