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:
Diffstat (limited to 'app/controllers/abuse_reports_controller.rb')
-rw-r--r--app/controllers/abuse_reports_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/abuse_reports_controller.rb b/app/controllers/abuse_reports_controller.rb
index 5a4f80fcb32..4cd76311b27 100644
--- a/app/controllers/abuse_reports_controller.rb
+++ b/app/controllers/abuse_reports_controller.rb
@@ -57,8 +57,8 @@ class AbuseReportsController < ApplicationController
if @user.nil?
redirect_to root_path, alert: _("Cannot create the abuse report. The user has been deleted.")
- elsif @user.blocked?
- redirect_to @user, alert: _("Cannot create the abuse report. This user has been blocked.")
+ elsif @user.banned?
+ redirect_to @user, alert: _("Cannot create the abuse report. This user has been banned.")
end
end
# rubocop: enable CodeReuse/ActiveRecord