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.

show.api.rsb 614B

1234567891011121314151617
  1. api.project do
  2. api.id @project.id
  3. api.name @project.name
  4. api.identifier @project.identifier
  5. api.description @project.description
  6. api.homepage @project.homepage
  7. api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible?
  8. api.status @project.status
  9. api.is_public @project.is_public?
  10. api.inherit_members @project.inherit_members?
  11. render_api_custom_values @project.visible_custom_field_values, api
  12. render_api_includes(@project, api)
  13. api.created_on @project.created_on
  14. api.updated_on @project.updated_on
  15. end