diff options
author | Anton Tananaev <anton@traccar.org> | 2023-02-20 11:30:26 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-02-20 11:30:26 -0800 |
commit | 1439422c6f4ce947f6719743b37fa49f251fc97f (patch) | |
tree | 45bb38bba8ac882a0267ce419c565bc0b2b02303 /src/main/java/org/traccar/api | |
parent | 8ae0436e5edb76243e59ee6e9b2c1a6132fd9464 (diff) | |
download | trackermap-server-1439422c6f4ce947f6719743b37fa49f251fc97f.tar.gz trackermap-server-1439422c6f4ce947f6719743b37fa49f251fc97f.tar.bz2 trackermap-server-1439422c6f4ce947f6719743b37fa49f251fc97f.zip |
Refactor notificator classes
Diffstat (limited to 'src/main/java/org/traccar/api')
-rw-r--r-- | src/main/java/org/traccar/api/resource/NotificationResource.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/traccar/api/resource/NotificationResource.java b/src/main/java/org/traccar/api/resource/NotificationResource.java index 2e4ad12f3..d58557601 100644 --- a/src/main/java/org/traccar/api/resource/NotificationResource.java +++ b/src/main/java/org/traccar/api/resource/NotificationResource.java @@ -83,7 +83,7 @@ public class NotificationResource extends ExtendedObjectResource<Notification> { public Response testMessage() throws MessageException, InterruptedException, StorageException { User user = permissionsService.getUser(getUserId()); for (Typed method : notificatorManager.getAllNotificatorTypes()) { - notificatorManager.getNotificator(method.getType()).send(user, new Event("test", 0), null); + notificatorManager.getNotificator(method.getType()).send(null, user, new Event("test", 0), null); } return Response.noContent().build(); } @@ -93,7 +93,7 @@ public class NotificationResource extends ExtendedObjectResource<Notification> { public Response testMessage(@PathParam("notificator") String notificator) throws MessageException, InterruptedException, StorageException { User user = permissionsService.getUser(getUserId()); - notificatorManager.getNotificator(notificator).send(user, new Event("test", 0), null); + notificatorManager.getNotificator(notificator).send(null, user, new Event("test", 0), null); return Response.noContent().build(); } |