feat(api): add iteration_id as boards create attribute by massimiliano96 · Pull Request #3191 · python-gitlab/python-gitlab

_from_parent_attrs = {"group_id": "group_id", "board_id": "id"}
_create_attrs = RequiredOptional(
exclusive=("label_id", "assignee_id", "milestone_id")
exclusive=("label_id", "assignee_id", "milestone_id", "iteration_id")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made a test using a simple curl:

image

But you are right I don't see any docs about this.

_from_parent_attrs = {"project_id": "project_id", "board_id": "id"}
_create_attrs = RequiredOptional(
exclusive=("label_id", "assignee_id", "milestone_id")
exclusive=("label_id", "assignee_id", "milestone_id", "iteration_id")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.