To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / issue_categories / show.api.rsb @ 1531:ae8145b28b2b
History | View | Annotate | Download (302 Bytes)
| 1 |
api.issue_category do |
|---|---|
| 2 |
api.id @category.id |
| 3 |
api.project(:id => @category.project_id, :name => @category.project.name) unless @category.project.nil? |
| 4 |
api.name @category.name |
| 5 |
api.assigned_to(:id => @category.assigned_to_id, :name => @category.assigned_to.name) unless @category.assigned_to.nil? |
| 6 |
end |