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-11 21:13:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-11 21:13:14 +0300
commit9e40efa6a6cb39c0a4a6d7d43f7445e2d6e25172 (patch)
tree3b5db6c0284b8c37d6afcae4e1340c3fe57c90f9 /app/controllers
parentd06e4d855aed9148571c7fd95fe02f208a017dd3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/groups/work_items_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/groups/work_items_controller.rb b/app/controllers/groups/work_items_controller.rb
index d1e15c81471..bd85f12119b 100644
--- a/app/controllers/groups/work_items_controller.rb
+++ b/app/controllers/groups/work_items_controller.rb
@@ -7,5 +7,9 @@ module Groups
def index
not_found unless Feature.enabled?(:namespace_level_work_items, group)
end
+
+ def show
+ not_found unless Feature.enabled?(:namespace_level_work_items, group)
+ end
end
end