diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-01-11 11:33:47 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-01-11 11:33:47 +0000 |
commit | de19424ea5b5c273817732a28a7f7ca6073e4107 (patch) | |
tree | c998a33a58735cd2075f0b39a9433ae458431721 /app/views/projects | |
parent | a89468ebc8a8aa082a667bbb1c44f095f8444579 (diff) | |
download | redmine-de19424ea5b5c273817732a28a7f7ca6073e4107.tar.gz redmine-de19424ea5b5c273817732a28a7f7ca6073e4107.zip |
Adds project status to GET /projects/:id and GET /projects API response (#15815).
git-svn-id: http://svn.redmine.org/redmine/trunk@12649 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/index.api.rsb | 1 | ||||
-rw-r--r-- | app/views/projects/show.api.rsb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/views/projects/index.api.rsb b/app/views/projects/index.api.rsb index 8fdea9bae..1aa5fe796 100644 --- a/app/views/projects/index.api.rsb +++ b/app/views/projects/index.api.rsb @@ -6,6 +6,7 @@ api.array :projects, api_meta(:total_count => @project_count, :offset => @offset api.identifier project.identifier api.description project.description api.parent(:id => project.parent.id, :name => project.parent.name) if project.parent && project.parent.visible? + api.status project.status render_api_custom_values project.visible_custom_field_values, api diff --git a/app/views/projects/show.api.rsb b/app/views/projects/show.api.rsb index a6f26f893..e84ebb073 100644 --- a/app/views/projects/show.api.rsb +++ b/app/views/projects/show.api.rsb @@ -5,6 +5,7 @@ api.project do api.description @project.description api.homepage @project.homepage api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible? + api.status @project.status render_api_custom_values @project.visible_custom_field_values, api |