diff options
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r-- | app/controllers/application_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 94f435948..2f0cfbf58 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -657,9 +657,9 @@ class ApplicationController < ActionController::Base render_error "An error occurred while executing the query and has been logged. Please report this error to your Redmine administrator." end - # Renders a 200 response for successful updates or deletions via the API + # Renders a 204 response for successful updates or deletions via the API def render_api_ok - render_api_head :ok + render_api_head :no_content end # Renders a head API response |