diff options
author | Abyss777 <abyss@fox5.ru> | 2017-05-18 10:01:49 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-05-18 16:18:26 +0500 |
commit | 788a499b346724d753798597fb18f8aef17e1588 (patch) | |
tree | 07a29a92434aba956697360d6ef867ca1a328060 /web/app/store/UserAttributes.js | |
parent | 31187bc2a3ae41ab553a6472b7592895e3641fe8 (diff) | |
download | trackermap-web-788a499b346724d753798597fb18f8aef17e1588.tar.gz trackermap-web-788a499b346724d753798597fb18f8aef17e1588.tar.bz2 trackermap-web-788a499b346724d753798597fb18f8aef17e1588.zip |
Implement known position attributes
Diffstat (limited to 'web/app/store/UserAttributes.js')
-rw-r--r-- | web/app/store/UserAttributes.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/web/app/store/UserAttributes.js b/web/app/store/UserAttributes.js index 8649eb8b..da05d5c8 100644 --- a/web/app/store/UserAttributes.js +++ b/web/app/store/UserAttributes.js @@ -23,54 +23,54 @@ Ext.define('Traccar.store.UserAttributes', { data: [{ key: 'mail.smtp.host', name: Strings.attributeMailSmtpHost, - type: 'string' + valueType: 'string' }, { key: 'mail.smtp.port', name: Strings.attributeMailSmtpPort, - type: 'number', + valueType: 'number', allowDecimals: false, minValue: 1, maxValue: 65535 }, { key: 'mail.smtp.starttls.enable', name: Strings.attributeMailSmtpStarttlsEnable, - type: 'boolean' + valueType: 'boolean' }, { key: 'mail.smtp.starttls.required', name: Strings.attributeMailSmtpStarttlsRequired, - type: 'boolean' + valueType: 'boolean' }, { key: 'mail.smtp.ssl.enable', name: Strings.attributeMailSmtpSslEnable, - type: 'boolean' + valueType: 'boolean' }, { key: 'mail.smtp.ssl.trust', name: Strings.attributeMailSmtpSslTrust, - type: 'string' + valueType: 'string' }, { key: 'mail.smtp.ssl.protocols', name: Strings.attributeMailSmtpSslProtocols, - type: 'string' + valueType: 'string' }, { key: 'mail.smtp.from', name: Strings.attributeMailSmtpFrom, - type: 'string' + valueType: 'string' }, { key: 'mail.smtp.auth', name: Strings.attributeMailSmtpAuth, - type: 'boolean' + valueType: 'boolean' }, { key: 'mail.smtp.username', name: Strings.attributeMailSmtpUsername, - type: 'string' + valueType: 'string' }, { key: 'mail.smtp.password', name: Strings.attributeMailSmtpPassword, - type: 'string' + valueType: 'string' }, { key: 'web.liveRouteLength', name: Strings.attributeWebLiveRouteLength, - type: 'number', + valueType: 'number', allowDecimals: false }] }); |