Commit 8575cbdc authored by Walmyr Lima's avatar Walmyr Lima

Update issue resource to allow assignees

parent 54ae133b
...@@ -13,10 +13,12 @@ module QA ...@@ -13,10 +13,12 @@ module QA
end end
attribute :id attribute :id
attribute :assignee_ids
attribute :labels attribute :labels
attribute :title attribute :title
def initialize def initialize
@assignee_ids = []
@labels = [] @labels = []
end end
...@@ -42,6 +44,7 @@ module QA ...@@ -42,6 +44,7 @@ module QA
def api_post_body def api_post_body
{ {
assignee_ids: assignee_ids,
labels: labels, labels: labels,
title: title title: title
}.tap do |hash| }.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