view app/views/issue_relations/index.api.rsb @ 1346:befaf13fec0d live

I think we have room for 7 projects here, rather than 5
author Chris Cannam
date Fri, 21 Jun 2013 15:05:30 +0100
parents cbb26bc654de
children
line wrap: on
line source
api.array :relations do
  @relations.each do |relation|
    api.relation do
      api.id relation.id
      api.issue_id relation.issue_from_id
      api.issue_to_id relation.issue_to_id
      api.relation_type relation.relation_type
      api.delay relation.delay
    end
  end
end