]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/notifier.rb
Mass rename of "bugs" as "notes" for increased user friendliness
[rails.git] / app / models / notifier.rb
index d3c975df98255cd6c0a0e8258a12d98bb211f218..f025da7b19c6ddda686a687b0e30a5cf2d085f97 100644 (file)
@@ -95,22 +95,20 @@ class Notifier < ActionMailer::Base
     body :friend => friend
   end
 
-  def bug_comment_notification(bug_comment, recipient)
+  def note_comment_notification(comment, recipient)
     common_headers recipient
-    commenter_name = bug_comment.user.display_name if bug_comment.user
-    commenter_name = bug_comment.commenter_name unless bug_comment.user
-       owner = (recipient == bug_comment.map_bug.map_bug_comment[0].user);
-    subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => commenter_name) if owner
-    subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => commenter_name) unless owner
+    owner = (recipient == comment.note.author);
+    subject I18n.t('notifier.note_plain.subject_own', :commenter => comment.author_name) if owner
+    subject I18n.t('notifier.note_plain.subject_other', :commenter => comment.author_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,
+    body :nodeurl => url_for(:host => SERVER_URL,
+                             :controller => "browse",
+                             :action => "note",
+                             :id => comment.note_id),
+         :place => comment.note.nearby_place,
+         :comment => comment.body,
          :owner => owner,
-         :commenter => commenter_name
+         :commenter => comment.author_name
   end
 
 private