X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bddf524c888c7364119a673e9b6c0518b0c6f93d..88524547953f87a087f97c0b7dbf398835347d82:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index e6058d4b7..26c236b7a 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -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)