diff options
author | Josh Pospisil <josh.pospisil@gmail.com> | 2020-09-08 15:50:37 -0500 |
---|---|---|
committer | Josh Pospisil <josh.pospisil@gmail.com> | 2020-09-08 19:45:50 -0500 |
commit | aa6e80d58d765102892fadb89951ce29d08e1dab (patch) | |
tree | b1d1bfc97fcc20dc0e0cb9316d5cae67ec4a46df | |
parent | 49a0032f44a76cdcf17dd45da4b23e24a6b9572c (diff) | |
download | gitlab-aa6e80d58d765102892fadb89951ce29d08e1dab.tar.gz |
feat(api): added wip filter param for merge requests
-rw-r--r-- | gitlab/v4/objects/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects/__init__.py b/gitlab/v4/objects/__init__.py index f9a2c25..0f9a655 100644 --- a/gitlab/v4/objects/__init__.py +++ b/gitlab/v4/objects/__init__.py @@ -1210,6 +1210,7 @@ class GroupMergeRequestManager(ListMixin, RESTManager): "source_branch", "target_branch", "search", + "wip", ) _types = {"labels": types.ListAttribute} @@ -1732,6 +1733,7 @@ class MergeRequestManager(ListMixin, RESTManager): "source_branch", "target_branch", "search", + "wip", ) _types = {"labels": types.ListAttribute} |