Include tags in GPX success and failure mails. Closes #480.
This commit is contained in:
parent
d47196254c
commit
7d0a281d5b
5 changed files with 22 additions and 14 deletions
|
@ -35,6 +35,8 @@ class Notifier < ActionMailer::Base
|
|||
headers "Auto-Submitted" => "auto-generated"
|
||||
body :trace_name => trace.name,
|
||||
:trace_points => trace.size,
|
||||
:trace_description => trace.description,
|
||||
:trace_tags => trace.tags,
|
||||
:possible_points => possible_points
|
||||
end
|
||||
|
||||
|
@ -44,6 +46,8 @@ class Notifier < ActionMailer::Base
|
|||
subject "[OpenStreetMap] GPX Import failure"
|
||||
headers "Auto-Submitted" => "auto-generated"
|
||||
body :trace_name => trace.name,
|
||||
:trace_description => trace.description,
|
||||
:trace_tags => trace.tags,
|
||||
:error => error
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue