- Notifications
You must be signed in to change notification settings - Fork673
Open
Labels
Description
Thanks for the great library. Unfortunatelly, I can't find a way to set multiple assignees to merge request. GitLab API supports this feature viaassignee_ids
field, but it seems thatgitlab.v4.objects.MergeRequest
object lacks this field. Could you please add the support for this feature (or, maybe, I just missed it somehow?).
PS: For now I fixed this with a quick hack:
attrs = (self._gitlab._objects.ProjectMergeRequestManager._update_attrs[1] + tuple(["assignee_ids"]))self._gitlab._objects.ProjectMergeRequestManager._update_attrs = ((), attrs)
whereself._gitlab
is an instance ofgitlab.Gitlab
. Looks like it works :)