Method: Issue#receive
- Defined in:
- lib/jirarest2/issue.rb
#receive(connection) ⇒ Object
TODO:
This method does not work yet
Receive an issue and all it’s fields from jira
32 33 34 35 36 37 |
# File 'lib/jirarest2/issue.rb', line 32 def receive(connection) uritail = "issue/#{@issueid}" result = connection.execute("Get",uritail,{"expand" => "metadata"}) # get the issue AND the metadata because we already know how to parse that. return result # TODO Many and more fields end |