Skip to content
Snippets Groups Projects
Commit 6ffdab63 authored by Jasper Maes's avatar Jasper Maes
Browse files

render :nothing option is deprecated, Use head method to respond with empty response body.

parent 0a42c7cb
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -233,7 +233,7 @@ class Projects::BlobController < Projects::ApplicationController
 
def validate_diff_params
if [:since, :to, :offset].any? { |key| params[key].blank? }
render nothing: true
head :ok
end
end
 
Loading
Loading
Loading
Loading
@@ -105,7 +105,7 @@ class Projects::BranchesController < Projects::ApplicationController
redirect_to project_branches_path(@project), status: :see_other
end
 
format.js { render nothing: true, status: result[:return_code] }
format.js { head result[:return_code] }
format.json { render json: { message: result[:message] }, status: result[:return_code] }
end
end
Loading
Loading
Loading
Loading
@@ -213,7 +213,7 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo
def rebase
RebaseWorker.perform_async(@merge_request.id, current_user.id)
 
render nothing: true, status: :ok
head :ok
end
 
protected
Loading
Loading
---
title: render :nothing option is deprecated, Use head method to respond with empty
response body.
merge_request: 23311
author: Jasper Maes
type: other
Loading
Loading
@@ -27,11 +27,11 @@ describe ControllerWithCrossProjectAccessCheck do
if: -> { if_condition }
 
def index
render nothing: true
head :ok
end
 
def show
render nothing: true
head :ok
end
 
def unless_condition
Loading
Loading
@@ -88,15 +88,15 @@ describe ControllerWithCrossProjectAccessCheck do
if: -> { if_condition }
 
def index
render nothing: true
head :ok
end
 
def show
render nothing: true
head :ok
end
 
def edit
render nothing: true
head :ok
end
 
def unless_condition
Loading
Loading
Loading
Loading
@@ -10,7 +10,7 @@ describe LfsRequest do
def show
storage_project
 
render nothing: true
head :ok
end
 
def project
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment