diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-08-10 14:06:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-10 14:06:39 +0300 |
commit | 40e26cbf38a236f3c92e50dff619b1a29bd413de (patch) | |
tree | 450026b9cda50c8cafdf3a15ce07ed3bbccfbc3c /web/app/Application.js | |
parent | 78f8d278276f0826eb302a08213609b083570760 (diff) | |
parent | ee5af32f8a9bc1edd7af02dfe3f243ebfdfb8641 (diff) | |
download | trackermap-server-40e26cbf38a236f3c92e50dff619b1a29bd413de.tar.gz trackermap-server-40e26cbf38a236f3c92e50dff619b1a29bd413de.tar.bz2 trackermap-server-40e26cbf38a236f3c92e50dff619b1a29bd413de.zip |
Merge pull request #2197 from Abyss777/reports_web
Initial implementation Report API for web
Diffstat (limited to 'web/app/Application.js')
-rw-r--r-- | web/app/Application.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/web/app/Application.js b/web/app/Application.js index ec942d21e..22102f74b 100644 --- a/web/app/Application.js +++ b/web/app/Application.js @@ -33,7 +33,8 @@ Ext.define('Traccar.Application', { 'Command', 'Event', 'Geofence', - 'Notification' + 'Notification', + 'ReportSummary' ], stores: [ @@ -56,7 +57,11 @@ Ext.define('Traccar.Application', { 'AllGeofences', 'Notifications', 'AllNotifications', - 'GeofenceTypes' + 'GeofenceTypes', + 'ReportRoute', + 'ReportEvents', + 'ReportSummary', + 'ReportTypes' ], controllers: [ |