diff options
author | Abyss777 <abyss@fox5.ru> | 2018-02-14 09:41:39 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-02-14 09:41:39 +0500 |
commit | ee41515cb2012a0b369c814900de3ffa362d647c (patch) | |
tree | 796d6056763a4d7300c28cb2f87ee94a291864a9 /web/app | |
parent | e9ca74e4decb8ab6d518cf0e4ef5e9949d446237 (diff) | |
download | trackermap-web-ee41515cb2012a0b369c814900de3ffa362d647c.tar.gz trackermap-web-ee41515cb2012a0b369c814900de3ffa362d647c.tar.bz2 trackermap-web-ee41515cb2012a0b369c814900de3ffa362d647c.zip |
Add Decoder Timezone attribute
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/store/DeviceAttributes.js | 5 | ||||
-rw-r--r-- | web/app/store/GroupAttributes.js | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/web/app/store/DeviceAttributes.js b/web/app/store/DeviceAttributes.js index 4b1d9204..c7a4abef 100644 --- a/web/app/store/DeviceAttributes.js +++ b/web/app/store/DeviceAttributes.js @@ -31,5 +31,10 @@ Ext.define('Traccar.store.DeviceAttributes', { key: 'processing.copyAttributes', name: Strings.attributeProcessingCopyAttributes, valueType: 'string' + }, { + key: 'decoder.timezone', + name: Strings.sharedTimezone, + valueType: 'string', + dataType: 'timezone' }] }); diff --git a/web/app/store/GroupAttributes.js b/web/app/store/GroupAttributes.js index 9389db1c..589e4ec2 100644 --- a/web/app/store/GroupAttributes.js +++ b/web/app/store/GroupAttributes.js @@ -23,5 +23,10 @@ Ext.define('Traccar.store.GroupAttributes', { key: 'processing.copyAttributes', name: Strings.attributeProcessingCopyAttributes, valueType: 'string' + }, { + key: 'decoder.timezone', + name: Strings.sharedTimezone, + valueType: 'string', + dataType: 'timezone' }] }); |