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/app
diff options
context:
space:
mode:
authorGitLab Release Tools Bot <robert+release-tools@gitlab.com>2019-09-26 16:53:01 +0300
committerGitLab Release Tools Bot <robert+release-tools@gitlab.com>2019-09-26 16:53:01 +0300
commitbd94dfe3164c18fffa0f335c43bc455fa155c907 (patch)
treea1a87ed3ffebe8bda8a28934a60dbb7d1eb3e441 /app
parentfccaf914e17f4dd84bba291ee57c79b9b7751434 (diff)
parentfcc8136a9e94615130c62a3c64485aa895673d54 (diff)
Merge branch 'security-64938-dont-disclose-path-12-2-ce' into '12-2-stable'
Redirect user to root path after unsubscribing from private resource See merge request gitlab/gitlabhq!3417
Diffstat (limited to 'app')
-rw-r--r--app/controllers/sent_notifications_controller.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/sent_notifications_controller.rb b/app/controllers/sent_notifications_controller.rb
index 77757c4a3ef..267f8caab77 100644
--- a/app/controllers/sent_notifications_controller.rb
+++ b/app/controllers/sent_notifications_controller.rb
@@ -19,7 +19,11 @@ class SentNotificationsController < ApplicationController
flash[:notice] = _("You have been unsubscribed from this thread.")
if current_user
- redirect_to noteable_path(noteable)
+ if current_user.can?(:"read_#{noteable.class.to_ability_name}", noteable)
+ redirect_to noteable_path(noteable)
+ else
+ redirect_to root_path
+ end
else
redirect_to new_user_session_path
end