Merge branch 'blackst0ne-rails5-set-request-format-in--commits-controller' into 'master'
[Rails5] Set request.format in commits_controller Closes #48144 et #48143 See merge request gitlab-org/gitlab-ce!20023
This commit is contained in:
commit
14e35ac9b1
2 changed files with 19 additions and 0 deletions
|
@ -9,6 +9,7 @@ class Projects::CommitsController < Projects::ApplicationController
|
|||
before_action :assign_ref_vars
|
||||
before_action :authorize_download_code!
|
||||
before_action :set_commits
|
||||
before_action :set_request_format, only: :show
|
||||
|
||||
def show
|
||||
@merge_request = MergeRequestsFinder.new(current_user, project_id: @project.id).execute.opened
|
||||
|
@ -61,6 +62,19 @@ class Projects::CommitsController < Projects::ApplicationController
|
|||
@commits = prepare_commits_for_rendering(@commits)
|
||||
end
|
||||
|
||||
# Rails 5 sets request.format from the extension.
|
||||
# Explicitly set to :html.
|
||||
def set_request_format
|
||||
request.format = :html if set_request_format?
|
||||
end
|
||||
|
||||
# Rails 5 sets request.format from extension.
|
||||
# In this case if the ref ends with `.atom`, it's expected to be the html response,
|
||||
# not the atom one. So explicitly set request.format as :html to act like rails4.
|
||||
def set_request_format?
|
||||
request.format.to_s == "text/html" || @commits.ref.ends_with?("atom")
|
||||
end
|
||||
|
||||
def whitelist_query_limiting
|
||||
Gitlab::QueryLimiting.whitelist('https://gitlab.com/gitlab-org/gitlab-ce/issues/42330')
|
||||
end
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: "[Rails5] Set request.format in commits_controller"
|
||||
merge_request: 20023
|
||||
author: "@blackst0ne"
|
||||
type: fixed
|
Loading…
Reference in a new issue