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
path: root/config
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-08 06:10:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-08 06:10:13 +0300
commitbbd439f9c5abb1a65243375d0e7c04609c6802d2 (patch)
tree117df4a044f4f20af4e39927703230890d558cd8 /config
parent85f6cef97283e50cb2de3dfa4015f7e617440b68 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config')
-rw-r--r--config/routes/profile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes/profile.rb b/config/routes/profile.rb
index fcf8812ee2e..6126a3b593b 100644
--- a/config/routes/profile.rb
+++ b/config/routes/profile.rb
@@ -22,7 +22,7 @@ resource :profile, only: [:show, :update] do
end
resource :notifications, only: [:show, :update] do
- resources :groups, only: :update
+ resources :groups, only: :update, constraints: { id: Gitlab::PathRegex.full_namespace_route_regex }
end
resource :password, only: [:new, :create, :edit, :update] do