diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-04-27 20:02:42 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-04-27 20:25:32 +0200 |
commit | 603a351c71196a7f516367fbf90519f9452f3c55 (patch) | |
tree | 2c9f7c1a6119699b872210b551ffa2e026de3b25 /gitlab/v4/objects/issues.py | |
parent | a6b6cd4b598ab6eddcf3986486d43e5cdc990e09 (diff) | |
download | gitlab-603a351c71196a7f516367fbf90519f9452f3c55.tar.gz |
fix(objects): allow lists for filters for in all objectsfix/missing-list-attributes
Diffstat (limited to 'gitlab/v4/objects/issues.py')
-rw-r--r-- | gitlab/v4/objects/issues.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects/issues.py b/gitlab/v4/objects/issues.py index c3c35d3..bf0e766 100644 --- a/gitlab/v4/objects/issues.py +++ b/gitlab/v4/objects/issues.py @@ -62,7 +62,7 @@ class IssueManager(RetrieveMixin, RESTManager): "updated_after", "updated_before", ) - _types = {"labels": types.ListAttribute} + _types = {"iids": types.ListAttribute, "labels": types.ListAttribute} class GroupIssue(RESTObject): @@ -89,7 +89,7 @@ class GroupIssueManager(ListMixin, RESTManager): "updated_after", "updated_before", ) - _types = {"labels": types.ListAttribute} + _types = {"iids": types.ListAttribute, "labels": types.ListAttribute} class ProjectIssue( |