aboutsummaryrefslogtreecommitdiff
path: root/modern/src/attributes/userAttributes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-09-03 09:57:50 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2021-09-03 09:57:50 -0700
commitc75dbd5410dd0eed2576afdedcfeb6082b4f7225 (patch)
tree69611e16a4823d5cf78b17c9199a7a3ea72dc7ee /modern/src/attributes/userAttributes.js
parenta15843964ef7c2a51bf861dcb395c78062996c87 (diff)
downloadetbsa-traccar-web-c75dbd5410dd0eed2576afdedcfeb6082b4f7225.tar.gz
etbsa-traccar-web-c75dbd5410dd0eed2576afdedcfeb6082b4f7225.tar.bz2
etbsa-traccar-web-c75dbd5410dd0eed2576afdedcfeb6082b4f7225.zip
Fix lint issues
Diffstat (limited to 'modern/src/attributes/userAttributes.js')
-rw-r--r--modern/src/attributes/userAttributes.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/modern/src/attributes/userAttributes.js b/modern/src/attributes/userAttributes.js
deleted file mode 100644
index d9a5814..0000000
--- a/modern/src/attributes/userAttributes.js
+++ /dev/null
@@ -1,68 +0,0 @@
-import { useMemo } from 'react';
-
-export const useUserAttributes = (t) => useMemo({
- 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',
- },
-}, [t]);