summaryrefslogtreecommitdiffstats
path: root/app/views/projects/show.api.rsb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/show.api.rsb')
-rw-r--r--app/views/projects/show.api.rsb13
1 files changed, 1 insertions, 12 deletions
diff --git a/app/views/projects/show.api.rsb b/app/views/projects/show.api.rsb
index 7a1e07c02..6e1958a34 100644
--- a/app/views/projects/show.api.rsb
+++ b/app/views/projects/show.api.rsb
@@ -9,19 +9,8 @@ api.project do
api.is_public @project.is_public?
render_api_custom_values @project.visible_custom_field_values, api
+ render_api_includes(@project, 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')
-
- api.array :issue_categories do
- @project.issue_categories.each do |category|
- api.issue_category(:id => category.id, :name => category.name)
- end
- end if include_in_api_response?('issue_categories')
end