aboutsummaryrefslogtreecommitdiff
path: root/modern/src/attributes/userAttributes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-09-27 19:49:47 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-09-27 19:49:47 -0700
commit9bfda9e131ddda3076b4094a94795db41072a39c (patch)
treed6b4e12f2d62431cc0d320b5396e578944af78f4 /modern/src/attributes/userAttributes.js
parentbbc54a464a8a3cf41904c5335fb1845ff8af1887 (diff)
downloadtrackermap-web-9bfda9e131ddda3076b4094a94795db41072a39c.tar.gz
trackermap-web-9bfda9e131ddda3076b4094a94795db41072a39c.tar.bz2
trackermap-web-9bfda9e131ddda3076b4094a94795db41072a39c.zip
Implement attributes editing
Diffstat (limited to 'modern/src/attributes/userAttributes.js')
-rw-r--r--modern/src/attributes/userAttributes.js68
1 files changed, 68 insertions, 0 deletions
diff --git a/modern/src/attributes/userAttributes.js b/modern/src/attributes/userAttributes.js
new file mode 100644
index 00000000..bcec29f2
--- /dev/null
+++ b/modern/src/attributes/userAttributes.js
@@ -0,0 +1,68 @@
+import t from '../common/localization'
+
+export default {
+ 'notificationTokens': {
+ name: t('attributeNotificationTokens'),
+ type: 'string',
+ },
+ 'web.liveRouteLength': {
+ name: t('attributeWebLiveRouteLength'),
+ type: 'number',
+ },
+ 'web.selectZoom': {
+ name: t('attributeWebSelectZoom'),
+ type: 'number',
+ },
+ 'web.maxZoom': {
+ name: t('attributeWebMaxZoom'),
+ type: 'number',
+ },
+ 'ui.disableReport': {
+ name: t('attributeUiDisableReport'),
+ type: 'boolean',
+ },
+ 'ui.disableEvents': {
+ name: t('attributeUiDisableEvents'),
+ type: 'boolean',
+ },
+ 'ui.disableVehicleFetures': {
+ name: t('attributeUiDisableVehicleFetures'),
+ type: 'boolean',
+ },
+ 'ui.disableDrivers': {
+ name: t('attributeUiDisableDrivers'),
+ type: 'boolean',
+ },
+ 'ui.disableComputedAttributes': {
+ name: t('attributeUiDisableComputedAttributes'),
+ type: 'boolean',
+ },
+ 'ui.disableCalendars': {
+ name: t('attributeUiDisableCalendars'),
+ type: 'boolean',
+ },
+ 'ui.disableMaintenance': {
+ name: t('attributeUiDisableMaintenance'),
+ type: 'boolean',
+ },
+ 'ui.hidePositionAttributes': {
+ name: t('attributeUiHidePositionAttributes'),
+ type: 'string',
+ },
+ 'distanceUnit': {
+ name: t('settingsDistanceUnit'),
+ type: 'string',
+ },
+ 'speedUnit': {
+ name: t('settingsSpeedUnit'),
+ type: 'string',
+ },
+ 'volumeUnit': {
+ name: t('settingsVolumeUnit'),
+ type: 'string',
+ },
+ 'timezone': {
+ name: t('sharedTimezone'),
+ type: 'string',
+ },
+};