Mercurial > hg > soundsoftware-site
view app/views/projects/show.api.rsb @ 485:ef125e1f3a10 bug_189
Remove Calendar from default blocks in My Page
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Mon, 11 Jul 2011 16:42:08 +0100 |
parents | af80e5618e9b |
children | 0c939c159af4 |
line wrap: on
line source
api.project do api.id @project.id api.name @project.name api.identifier @project.identifier api.description @project.description api.homepage @project.homepage render_api_custom_values @project.visible_custom_field_values, api api.created_on @project.created_on api.updated_on @project.updated_on api.array :trackers do @project.trackers.each do |tracker| api.tracker(:id => tracker.id, :name => tracker.name) end end if include_in_api_response?('trackers') end