X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6fb857020092c909043c4521b91a040f3bb16937..f77a3c75bee528caaa6fc8e237ee6eaef704efe0:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index a1fde49b3..e8c9259cb 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -4,6 +4,7 @@ class Notifier < ActionMailer::Base subject I18n.t('notifier.signup_confirm.subject') body :url => url_for(:host => SERVER_URL, :controller => "user", :action => "confirm", + :display_name => user.display_name, :confirm_string => token.token) end @@ -94,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.author); + subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => bug_comment.author_name) if owner + subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => bug_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.body, + :owner => owner, + :commenter => bug_comment.author_name + end + private def common_headers(recipient)