diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-04-21 15:10:09 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-04-21 15:10:09 +0000 |
commit | 48e30ea32f840f5c92e71e34f7a3166b4fc35576 (patch) | |
tree | d48e49ca3f10b7ad0c929a57abcb09205352d606 /app/controllers/groups_controller.rb | |
parent | 77839aae00dbe2dd955b946739d07fdcbac4468b (diff) | |
download | gitlab-ce-48e30ea32f840f5c92e71e34f7a3166b4fc35576.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r-- | app/controllers/groups_controller.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index 995d5abf045..700042614cc 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -59,8 +59,9 @@ class GroupsController < Groups::ApplicationController feature_category :importers, [:export, :download_export] urgency :high, [:unfoldered_environment_names] + # TODO: Set #show to higher urgency after resolving https://gitlab.com/gitlab-org/gitlab/-/issues/334795 - urgency :low, [:merge_requests, :show] + urgency :low, [:merge_requests, :show, :create, :new, :update] def index redirect_to(current_user ? dashboard_groups_path : explore_groups_path) |