X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fac305e87b9a2df59064ddad666304ceb3d7f7a7..a7e3b58b410c2f74a69eebbe3151866a5161dc09:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 80c1b1f82..c165dca96 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -21,18 +21,20 @@ class Notifier < ActionMailer::Base @body['pass'] = pass end - def gpx_success(trace) - @recipients = user.email + def gpx_success(trace, possible_points) + @recipients = trace.user.email @from = 'abuse@openstreetmap.org' @subject = '[OpenStreetMap] GPX Import success' @body['trace_name'] = trace.name @body['trace_points'] = trace.size + @body['possible_points'] = possible_points end - def gpx_failure(trace) - @recipients = user.email + def gpx_failure(trace, error) + @recipients = trace.user.email @from = 'abuse@openstreetmap.org' @subject = '[OpenStreetMap] GPX Import failure' @body['trace_name'] = trace.name + @body['error'] = error end end