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 / app / views / issue_relations / index.api.rsb @ 1531:ae8145b28b2b

History | View | Annotate | Download (282 Bytes)

1
api.array :relations do
2
  @relations.each do |relation|
3
    api.relation do
4
      api.id relation.id
5
      api.issue_id relation.issue_from_id
6
      api.issue_to_id relation.issue_to_id
7
      api.relation_type relation.relation_type
8
      api.delay relation.delay
9
    end
10
  end
11
end