You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pgfqe6ch8/app/views/versions/show.api.rsb

16 lines
463 B

6 years ago
api.version do
api.id @version.id
api.project(:id => @version.project_id, :name => @version.project.name) unless @version.project.nil?
api.name @version.name
api.description @version.description
api.status @version.status
api.due_date @version.effective_date
api.sharing @version.sharing
render_api_custom_values @version.custom_field_values, api
api.created_on @version.created_on
api.updated_on @version.updated_on
end