aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-08-27 23:45:17 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-08-27 23:45:17 -0700
commitf3e168f082bc4142d0651ead2f493e8952e72014 (patch)
tree03c233f8c747f2339e7925fe4027448b79a70d73 /web
parent2988629a563ad906d9c4307ccf0daf86d8fef210 (diff)
downloadetbsa-traccar-web-f3e168f082bc4142d0651ead2f493e8952e72014.tar.gz
etbsa-traccar-web-f3e168f082bc4142d0651ead2f493e8952e72014.tar.bz2
etbsa-traccar-web-f3e168f082bc4142d0651ead2f493e8952e72014.zip
Add device inactivity event
Diffstat (limited to 'web')
-rw-r--r--web/app/store/DeviceAttributes.js12
-rw-r--r--web/l10n/en.json3
2 files changed, 15 insertions, 0 deletions
diff --git a/web/app/store/DeviceAttributes.js b/web/app/store/DeviceAttributes.js
index c7a4abe..45ae6e3 100644
--- a/web/app/store/DeviceAttributes.js
+++ b/web/app/store/DeviceAttributes.js
@@ -36,5 +36,17 @@ Ext.define('Traccar.store.DeviceAttributes', {
name: Strings.sharedTimezone,
valueType: 'string',
dataType: 'timezone'
+ }, {
+ key: 'deviceInactivityStart',
+ name: Strings.attributeDeviceInactivityStart,
+ valueType: 'number',
+ allowDecimals: false,
+ minValue: 1
+ }, {
+ key: 'deviceInactivityPeriod',
+ name: Strings.attributeDeviceInactivityPeriod,
+ valueType: 'number',
+ allowDecimals: false,
+ minValue: 1
}]
});
diff --git a/web/l10n/en.json b/web/l10n/en.json
index 4916340..83349be 100644
--- a/web/l10n/en.json
+++ b/web/l10n/en.json
@@ -82,6 +82,8 @@
"attributeReportIgnoreOdometer": "Report: Ignore Odometer",
"attributeWebReportColor": "Web: Report Color",
"attributeDevicePassword": "Device Password",
+ "attributeDeviceInactivityStart": "Device Inactivity Start",
+ "attributeDeviceInactivityPeriod": "Device Inactivity Period",
"attributeProcessingCopyAttributes": "Processing: Copy Attributes",
"attributeColor": "Color",
"attributeWebLiveRouteLength": "Web: Live Route Length",
@@ -304,6 +306,7 @@
"eventDeviceOnline": "Status online",
"eventDeviceUnknown": "Status unknown",
"eventDeviceOffline": "Status offline",
+ "eventDeviceInactive": "Device inactive",
"eventDeviceMoving": "Device moving",
"eventDeviceStopped": "Device stopped",
"eventDeviceOverspeed": "Speed limit exceeded",