10000 feat: Added "in" parameter to project/group iteration search · python-gitlab/python-gitlab@2194b50 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2194b50

Browse files
author
Cristiano Casella
committed
feat: Added "in" parameter to project/group iteration search
1 parent e11d889 commit 2194b50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/v4/objects/iterations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ class GroupIterationManager(ListMixin, RESTManager):
1616
_path = "/groups/{group_id}/iterations"
1717
_obj_cls = GroupIteration
1818
_from_parent_attrs = {"group_id": "id"}
19-
_list_filters = ("state", "search", "include_ancestors")
19+
_list_filters = ("state", "search", "in", "include_ancestors")
2020

2121

2222
class ProjectIterationManager(ListMixin, RESTManager):
2323
_path = "/projects/{project_id}/iterations"
2424
_obj_cls = GroupIteration
2525
_from_parent_attrs = {"project_id": "id"}
26-
_list_filters = ("state", "search", "include_ancestors")
26+
_list_filters = ("state", "search", "in", "include_ancestors")

0 commit comments

Comments
 (0)
0