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 / versions / show.api.rsb @ 912:5e80956cc792

History | View | Annotate | Download (428 Bytes)

1 909:cbb26bc654de Chris
api.version do
2
  api.id @version.id
3
  api.project(:id => @version.project_id, :name => @version.project.name) unless @version.project.nil?
4
5
  api.name        @version.name
6
  api.description @version.description
7
  api.status      @version.status
8
  api.due_date    @version.effective_date
9
10
  render_api_custom_values @version.custom_field_values, api
11
12
  api.created_on @version.created_on
13
  api.updated_on @version.updated_on
14
end