Commit d4159288 authored by Walmyr Lima e Silva Filho's avatar Walmyr Lima e Silva Filho

Merge branch 'qa-tests-allow-assignees-on-issue-fabrication-via-api' into 'master'

Update issue resource to allow assignees on issue fabrication via API

See merge request gitlab-org/gitlab!17086
parents d537c4b5 8575cbdc
......@@ -13,10 +13,12 @@ module QA
end
attribute :id
attribute :assignee_ids
attribute :labels
attribute :title
def initialize
@assignee_ids = []
@labels = []
end
......@@ -42,6 +44,7 @@ module QA
def api_post_body
{
assignee_ids: assignee_ids,
labels: labels,
title: title
}.tap do |hash|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment