summaryrefslogtreecommitdiff
path: root/app/controllers/abuse_reports_controller.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-06 15:15:17 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-06 15:15:17 +0200
commited7a8c9221fe544afb666e2b10672c759c821507 (patch)
treec491a07bb04e148a9b37c864f9c5363058a89d1a /app/controllers/abuse_reports_controller.rb
parent4ba26988101b502742a17cd47cc5634c28de2d03 (diff)
downloadgitlab-ce-ed7a8c9221fe544afb666e2b10672c759c821507.tar.gz
Improve wording in abuse report form
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/controllers/abuse_reports_controller.rb')
-rw-r--r--app/controllers/abuse_reports_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/abuse_reports_controller.rb b/app/controllers/abuse_reports_controller.rb
index 757be5ef727..65dbd5ef551 100644
--- a/app/controllers/abuse_reports_controller.rb
+++ b/app/controllers/abuse_reports_controller.rb
@@ -9,7 +9,8 @@ class AbuseReportsController < ApplicationController
@abuse_report.reporter = current_user
if @abuse_report.save
- redirect_to root_path, notice: 'Thank you for report. GitLab administrator will be able to see it'
+ message = "Thank you for your report. A GitLab administrator will look into it shortly."
+ redirect_to root_path, notice: message
else
render :new
end