]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/notifier.rb
Rename association between map_bugs and map_bug_comment to comments
[rails.git] / app / models / notifier.rb
index e6058d4b7374e486e51e37ce91e7b1707047c092..26c236b7ad48f5550cae088a6644bc4a5b5d8093 100644 (file)
@@ -95,6 +95,22 @@ class Notifier < ActionMailer::Base
     body :friend => friend
   end
 
+  def bug_comment_notification(bug_comment, recipient)
+    common_headers recipient
+    owner = (recipient == bug_comment.map_bug.comments.first.user);
+    subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => bug_comment.commenter_name) if owner
+    subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => bug_comment.commenter_name) unless owner
+
+    body :bugurl => url_for(:host => SERVER_URL,
+                            :controller => "browse",
+                            :action => "bug",
+                            :id => bug_comment.bug_id),
+         :place => bug_comment.map_bug.nearby_place,
+         :comment => bug_comment.comment,
+         :owner => owner,
+         :commenter => bug_comment.commenter_name
+  end
+
 private
 
   def common_headers(recipient)