rosa-build/app/views/api/v1/issues/_issue.json.jbuilder

12 lines
408 B
Plaintext
Raw Normal View History

2013-04-12 17:52:56 +01:00
json.number issue.serial_id
json.(issue, :title, :status)
json.labels issue.labels do |json_labels, label|
json.partial! 'label', :label => label, :json => json_labels
end
json.assignee do |json_assignee|
json.partial! 'api/v1/shared/member', :member => issue.assignee, :tag => json_assignee
end if issue.assignee
json.url api_v1_project_issue_path(issue.project.id, issue.serial_id, :format => :json)