aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/UserAttributes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2017-08-18 23:10:25 +1200
committerGitHub <noreply@github.com>2017-08-18 23:10:25 +1200
commitf7edbe59ae418d12871b483a8533af3ac28fbff6 (patch)
tree287a5ade49ee4f51328aa93216545d41117f2d95 /web/app/store/UserAttributes.js
parentcbc90c04da15fe0d57910e6180205351a894166b (diff)
parentf26159a40b3b23fbd63de312f121b1fe1bf64bd1 (diff)
downloadtrackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.tar.gz
trackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.tar.bz2
trackermap-web-f7edbe59ae418d12871b483a8533af3ac28fbff6.zip
Merge pull request #556 from Abyss777/disable_vehicle_features
Disable some UI features
Diffstat (limited to 'web/app/store/UserAttributes.js')
-rw-r--r--web/app/store/UserAttributes.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/web/app/store/UserAttributes.js b/web/app/store/UserAttributes.js
index 6cf06fbb..dfe69421 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,21 +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'
}]
});