aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/CommonUserAttributes.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-09-06 13:28:48 +0500
committerAbyss777 <abyss@fox5.ru>2017-09-06 14:59:08 +0500
commit1edfec60e54b26f3cd7970075b58bb69920b37f7 (patch)
treed7ecca927798e16c469868fc609c954fe3d1016c /web/app/store/CommonUserAttributes.js
parentae9de5a7b9cf43ad488022675d243a4b7a863aa4 (diff)
downloadtrackermap-web-1edfec60e54b26f3cd7970075b58bb69920b37f7.tar.gz
trackermap-web-1edfec60e54b26f3cd7970075b58bb69920b37f7.tar.bz2
trackermap-web-1edfec60e54b26f3cd7970075b58bb69920b37f7.zip
Move units to attributes and add volume units
Diffstat (limited to 'web/app/store/CommonUserAttributes.js')
-rw-r--r--web/app/store/CommonUserAttributes.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/web/app/store/CommonUserAttributes.js b/web/app/store/CommonUserAttributes.js
index d07d955d..d000909d 100644
--- a/web/app/store/CommonUserAttributes.js
+++ b/web/app/store/CommonUserAttributes.js
@@ -58,5 +58,25 @@ Ext.define('Traccar.store.CommonUserAttributes', {
key: 'ui.disableCalendars',
name: Strings.attributeUiDisableCalendars,
valueType: 'boolean'
+ }, {
+ key: 'distanceUnit',
+ name: Strings.sharedDistance,
+ valueType: 'string',
+ dataType: 'distanceUnit'
+ }, {
+ key: 'speedUnit',
+ name: Strings.settingsSpeedUnit,
+ valueType: 'string',
+ dataType: 'speedUnit'
+ }, {
+ key: 'volumeUnit',
+ name: Strings.sharedVolumeUnit,
+ valueType: 'string',
+ dataType: 'volumeUnit'
+ }, {
+ key: 'timezone',
+ name: Strings.sharedTimezone,
+ valueType: 'string',
+ dataType: 'timezone'
}]
});