To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 1b / 1b72750fe3e10ec61029653a70e90ded5cedc32d.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (436 Bytes)

1
api.array :issue_categories, api_meta(:total_count => @categories.size) do
2
  @categories.each do |category|
3
    api.issue_category do
4
      api.id category.id
5
      api.project(:id => category.project_id, :name => category.project.name) unless category.project.nil?
6
      api.name category.name
7
      api.assigned_to(:id => category.assigned_to_id, :name => category.assigned_to.name) unless category.assigned_to.nil?
8
    end
9
  end
10
end