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:
Diffstat (limited to 'app')
-rw-r--r--app/controllers/abuse_reports_controller.rb7
-rw-r--r--app/mailers/abuse_report_mailer.rb10
2 files changed, 11 insertions, 6 deletions
diff --git a/app/controllers/abuse_reports_controller.rb b/app/controllers/abuse_reports_controller.rb
index 482ec5054ac..2f4054eaa11 100644
--- a/app/controllers/abuse_reports_controller.rb
+++ b/app/controllers/abuse_reports_controller.rb
@@ -9,11 +9,12 @@ class AbuseReportsController < ApplicationController
@abuse_report.reporter = current_user
if @abuse_report.save
- message = "Thank you for your report. A GitLab administrator will look into it shortly."
- redirect_to root_path, notice: message
if current_application_settings.admin_notification_email.present?
- AbuseReportMailer.delay.notify(@abuse_report, current_application_settings.admin_notification_email)
+ AbuseReportMailer.delay.notify(@abuse_report.id)
end
+
+ message = "Thank you for your report. A GitLab administrator will look into it shortly."
+ redirect_to root_path, notice: message
else
render :new
end
diff --git a/app/mailers/abuse_report_mailer.rb b/app/mailers/abuse_report_mailer.rb
index c8b9c9c1628..f0c41f69a5c 100644
--- a/app/mailers/abuse_report_mailer.rb
+++ b/app/mailers/abuse_report_mailer.rb
@@ -1,8 +1,12 @@
class AbuseReportMailer < BaseMailer
+ include Gitlab::CurrentSettings
- def notify(abuse_report, to_email)
- @abuse_report = abuse_report
+ def notify(abuse_report_id)
+ @abuse_report = AbuseReport.find(abuse_report_id)
- mail(to: to_email, subject: "[Gitlab] Abuse report filed for `#{@abuse_report.user.username}`")
+ mail(
+ to: current_application_settings.admin_notification_email,
+ subject: "#{@abuse_report.user.name} (#{@abuse_report.user.username}) was reported for abuse"
+ )
end
end