diff options
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/DeviceAttributes.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/app/store/DeviceAttributes.js b/web/app/store/DeviceAttributes.js index c7a4abef..45ae6e3d 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 }] }); |