Commit c0ae2dd8 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'caalberts-whitelist-query-limiting-projects-show' into 'master'

Allow ProjectsController#show in query_limiting

See merge request gitlab-org/gitlab!52473
parents cc252f1f 5babbab2
...@@ -14,7 +14,7 @@ class ProjectsController < Projects::ApplicationController ...@@ -14,7 +14,7 @@ class ProjectsController < Projects::ApplicationController
around_action :allow_gitaly_ref_name_caching, only: [:index, :show] around_action :allow_gitaly_ref_name_caching, only: [:index, :show]
before_action :whitelist_query_limiting, only: [:create] before_action :whitelist_query_limiting, only: [:show, :create]
before_action :authenticate_user!, except: [:index, :show, :activity, :refs, :resolve, :unfoldered_environment_names] before_action :authenticate_user!, except: [:index, :show, :activity, :refs, :resolve, :unfoldered_environment_names]
before_action :redirect_git_extension, only: [:show] before_action :redirect_git_extension, only: [:show]
before_action :project, except: [:index, :new, :create, :resolve] before_action :project, except: [:index, :new, :create, :resolve]
...@@ -503,7 +503,7 @@ class ProjectsController < Projects::ApplicationController ...@@ -503,7 +503,7 @@ class ProjectsController < Projects::ApplicationController
end end
def whitelist_query_limiting def whitelist_query_limiting
Gitlab::QueryLimiting.whitelist('https://gitlab.com/gitlab-org/gitlab-foss/issues/42440') Gitlab::QueryLimiting.whitelist('https://gitlab.com/gitlab-org/gitlab/-/issues/20826')
end end
def present_project def present_project
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment