You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
json.partial! "commons/success"
|
|
|
|
json.extract! @issue, :id,:subject,:description,:is_private,:assigned_to_id,:tracker_id,:status_id,:priority_id,:fixed_version_id,
|
|
|
|
:start_date,:due_date,:estimated_hours
|
|
|
|
json.done_ratio @issue.done_ratio.to_s + "%"
|
|
|
|
json.issue_chosen @issue_chosen
|
|
|
|
|
|
|
|
json.attachments do
|
|
|
|
json.array! @issue_attachments do |attachment|
|
|
|
|
json.partial! "attachments/attachment_simple", locals: {attachment: attachment}
|
|
|
|
end
|
|
|
|
end
|