File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class GroupBoardListManager(CRUDMixin[GroupBoardList]):
23
23
_obj_cls = GroupBoardList
24
24
_from_parent_attrs = {"group_id" : "group_id" , "board_id" : "id" }
25
25
_create_attrs = RequiredOptional (
26
- exclusive = ("label_id" , "assignee_id" , "milestone_id" )
26
+ exclusive = ("label_id" , "assignee_id" , "milestone_id" , "iteration_id" )
27
27
)
28
28
_update_attrs = RequiredOptional (required = ("position" ,))
29
29
@@ -48,7 +48,7 @@ class ProjectBoardListManager(CRUDMixin[ProjectBoardList]):
48
48
_obj_cls = ProjectBoardList
49
49
_from_parent_attrs = {"project_id" : "project_id" , "board_id" : "id" }
50
50
_create_attrs = RequiredOptional (
51
- exclusive = ("label_id" , "assignee_id" , "milestone_id" )
51
+ exclusive = ("label_id" , "assignee_id" , "milestone_id" , "iteration_id" )
52
52
)
53
53
_update_attrs = RequiredOptional (required = ("position" ,))
54
54
You can’t perform that action at this time.
0 commit comments