Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-21 21:11:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-21 21:11:25 +0300
commit97e624382d04b9fa172f51aa299f52778446c661 (patch)
tree47205ff229541007296555e072cf20127db930f1 /app/controllers
parent455d56f2677eeb1e5da2506652694cd519a9df33 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/concerns/planning_hierarchy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/planning_hierarchy.rb b/app/controllers/concerns/planning_hierarchy.rb
index 5df838bc183..51999a87e26 100644
--- a/app/controllers/concerns/planning_hierarchy.rb
+++ b/app/controllers/concerns/planning_hierarchy.rb
@@ -7,7 +7,7 @@ module PlanningHierarchy
def planning_hierarchy
return access_denied! unless can?(current_user, :read_planning_hierarchy, @project)
- render 'shared/planning_hierarchy'
+ route_not_found
end
# rubocop:enable Gitlab/ModuleWithInstanceVariables
end