aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/UserAttributes.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-08-18 15:40:39 +0500
committerAbyss777 <abyss@fox5.ru>2017-08-18 15:40:39 +0500
commitf26159a40b3b23fbd63de312f121b1fe1bf64bd1 (patch)
treee11eb5ae16c18feaa24844aae8305de472e140b1 /web/app/store/UserAttributes.js
parentd1d7d230a0262d9f6ae05f1c4c6718699edb8de3 (diff)
downloadetbsa-traccar-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.gz
etbsa-traccar-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.bz2
etbsa-traccar-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.zip
- Detach common known attributes
- Rename function
Diffstat (limited to 'web/app/store/UserAttributes.js')
-rw-r--r--web/app/store/UserAttributes.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/web/app/store/UserAttributes.js b/web/app/store/UserAttributes.js
index a004a54..dfe6942 100644
--- a/web/app/store/UserAttributes.js
+++ b/web/app/store/UserAttributes.js
@@ -18,7 +18,6 @@
Ext.define('Traccar.store.UserAttributes', {
extend: 'Ext.data.Store',
model: 'Traccar.model.KnownAttribute',
- proxy: 'memory',
data: [{
key: 'mail.smtp.host',
@@ -67,37 +66,5 @@ Ext.define('Traccar.store.UserAttributes', {
key: 'mail.smtp.password',
name: Strings.attributeMailSmtpPassword,
valueType: 'string'
- }, {
- key: 'web.liveRouteLength',
- name: Strings.attributeWebLiveRouteLength,
- valueType: 'number',
- allowDecimals: false
- }, {
- key: 'web.selectZoom',
- name: Strings.attributeWebSelectZoom,
- valueType: 'number',
- allowDecimals: false,
- minValue: Traccar.Style.mapDefaultZoom,
- maxValue: Traccar.Style.mapMaxZoom
- }, {
- key: 'ui.disableReport',
- name: Strings.attributeUiDisableReport,
- valueType: 'boolean'
- }, {
- key: 'ui.disableVehicleFetures',
- name: Strings.attributeUiDisableVehicleFetures,
- valueType: 'boolean'
- }, {
- key: 'ui.disableDrivers',
- name: Strings.attributeUiDisableDrivers,
- valueType: 'boolean'
- }, {
- key: 'ui.disableComputedAttributes',
- name: Strings.attributeUiDisableComputedAttributes,
- valueType: 'boolean'
- }, {
- key: 'ui.disableCalendars',
- name: Strings.attributeUiDisableCalendars,
- valueType: 'boolean'
}]
});