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:
authorRobert Speicher <rspeicher@gmail.com>2016-01-05 02:59:42 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-01-05 02:59:42 +0300
commit46a220ae3c0e646aac63a3230399fcc8979df6ec (patch)
treee58ef33e0afb682cc746220cdeebd0221173e93e /app/models
parent01248d205103fe6c408e914e8943873ceb7acb2a (diff)
Add `AbuseReport#notify`
Tell, Don't Ask.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/abuse_report.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/abuse_report.rb b/app/models/abuse_report.rb
index 89b3116b9f2..55864236b2f 100644
--- a/app/models/abuse_report.rb
+++ b/app/models/abuse_report.rb
@@ -18,4 +18,10 @@ class AbuseReport < ActiveRecord::Base
validates :user, presence: true
validates :message, presence: true
validates :user_id, uniqueness: true
+
+ def notify
+ return unless self.persisted?
+
+ AbuseReportMailer.notify(self.id).deliver_later
+ end
end