summaryrefslogtreecommitdiffstats
path: root/app/controllers/timelog_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-14 08:13:55 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-14 08:13:55 +0000
commit18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1 (patch)
tree7b5be61fb040bb64bdaff1726a746fe82e149810 /app/controllers/timelog_controller.rb
parent6bf60e8c206b3c75d18c824cb8b98b10a6d6a69c (diff)
downloadredmine-18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1.tar.gz
redmine-18f693f9f7c1ff0a32ddda9b6ea43a4bb1fe28e1.zip
Fixed that 200 API responses have a body containing one space (#11388).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9975 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/timelog_controller.rb')
-rw-r--r--app/controllers/timelog_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb
index 30d6cc28a..7aae12b5c 100644
--- a/app/controllers/timelog_controller.rb
+++ b/app/controllers/timelog_controller.rb
@@ -171,7 +171,7 @@ class TimelogController < ApplicationController
flash[:notice] = l(:notice_successful_update)
redirect_back_or_default :action => 'index', :project_id => @time_entry.project
}
- format.api { head :ok }
+ format.api { render_api_ok }
end
else
respond_to do |format|
@@ -223,7 +223,7 @@ class TimelogController < ApplicationController
}
format.api {
if destroyed
- head :ok
+ render_api_ok
else
render_validation_errors(@time_entries)
end