diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-12-10 22:01:16 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-10 22:01:16 +1300 |
commit | 0d23a4eb3ef7a84dbfba3bf55ed70f427ccfe02f (patch) | |
tree | 8353ba016b4fbf1eb982b7e309bcda7e9e7b292b /src/org/traccar/notification/NotificationFormatter.java | |
parent | 8af8f58f89c103169008f3aa41207ac4041f5c0f (diff) | |
parent | 50ca72b3249bece77434a8d5151577dcd8867697 (diff) | |
download | trackermap-server-0d23a4eb3ef7a84dbfba3bf55ed70f427ccfe02f.tar.gz trackermap-server-0d23a4eb3ef7a84dbfba3bf55ed70f427ccfe02f.tar.bz2 trackermap-server-0d23a4eb3ef7a84dbfba3bf55ed70f427ccfe02f.zip |
Merge pull request #2668 from Abyss777/template_links
Added links to server in mail templates
Diffstat (limited to 'src/org/traccar/notification/NotificationFormatter.java')
-rw-r--r-- | src/org/traccar/notification/NotificationFormatter.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java index 2d580922c..819c387d1 100644 --- a/src/org/traccar/notification/NotificationFormatter.java +++ b/src/org/traccar/notification/NotificationFormatter.java @@ -45,6 +45,7 @@ public final class NotificationFormatter { if (event.getGeofenceId() != 0) { velocityContext.put("geofence", Context.getGeofenceManager().getGeofence(event.getGeofenceId())); } + velocityContext.put("webUrl", Context.getVelocityEngine().getProperty("web.url")); Template template = null; try { |