aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-02-14 17:51:54 +1300
committerGitHub <noreply@github.com>2018-02-14 17:51:54 +1300
commit482713b35cd4bd65ca161a27f68bd444c119fffc (patch)
tree796d6056763a4d7300c28cb2f87ee94a291864a9 /web
parente9ca74e4decb8ab6d518cf0e4ef5e9949d446237 (diff)
parentee41515cb2012a0b369c814900de3ffa362d647c (diff)
downloadetbsa-traccar-web-482713b35cd4bd65ca161a27f68bd444c119fffc.tar.gz
etbsa-traccar-web-482713b35cd4bd65ca161a27f68bd444c119fffc.tar.bz2
etbsa-traccar-web-482713b35cd4bd65ca161a27f68bd444c119fffc.zip
Merge pull request #650 from Abyss777/decoder_timezone
Add Decoder Timezone attribute
Diffstat (limited to 'web')
-rw-r--r--web/app/store/DeviceAttributes.js5
-rw-r--r--web/app/store/GroupAttributes.js5
2 files changed, 10 insertions, 0 deletions
diff --git a/web/app/store/DeviceAttributes.js b/web/app/store/DeviceAttributes.js
index 4b1d920..c7a4abe 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 9389db1..589e4ec 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'
}]
});