diff options
| author | Nejc Habjan <hab.nejc@gmail.com> | 2021-04-27 17:27:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-27 17:27:42 +0200 |
| commit | a6b6cd4b598ab6eddcf3986486d43e5cdc990e09 (patch) | |
| tree | 3e0f733d0fd39c70ed375a0e23eedf028a036436 /gitlab | |
| parent | 909aa9a02b8a0eb2faed747bfbf5839c53266129 (diff) | |
| parent | 45f806c7a7354592befe58a76b7e33a6d5d0fe6e (diff) | |
| download | gitlab-a6b6cd4b598ab6eddcf3986486d43e5cdc990e09.tar.gz | |
Merge pull request #1413 from JohnVillalovos/jlvillal/1407
fix: iids not working as a list in projects.issues.list()
Diffstat (limited to 'gitlab')
| -rw-r--r-- | gitlab/v4/objects/issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/issues.py b/gitlab/v4/objects/issues.py index cdaeaba..c3c35d3 100644 --- a/gitlab/v4/objects/issues.py +++ b/gitlab/v4/objects/issues.py @@ -220,7 +220,7 @@ class ProjectIssueManager(CRUDMixin, RESTManager): "discussion_locked", ), ) - _types = {"labels": types.ListAttribute} + _types = {"iids": types.ListAttribute, "labels": types.ListAttribute} class ProjectIssueLink(ObjectDeleteMixin, RESTObject): |
