diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-09-27 19:52:54 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-09-27 19:52:54 -0700 |
commit | 3fdfe78d0f3568072f838a0721e9521258d95c1e (patch) | |
tree | 279912417462373459b87f87b68a471c15583b80 /modern/src/attributes/deviceAttributes.js | |
parent | 9bfda9e131ddda3076b4094a94795db41072a39c (diff) | |
download | trackermap-web-3fdfe78d0f3568072f838a0721e9521258d95c1e.tar.gz trackermap-web-3fdfe78d0f3568072f838a0721e9521258d95c1e.tar.bz2 trackermap-web-3fdfe78d0f3568072f838a0721e9521258d95c1e.zip |
Add attributes to device
Diffstat (limited to 'modern/src/attributes/deviceAttributes.js')
-rw-r--r-- | modern/src/attributes/deviceAttributes.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modern/src/attributes/deviceAttributes.js b/modern/src/attributes/deviceAttributes.js new file mode 100644 index 00000000..891a225e --- /dev/null +++ b/modern/src/attributes/deviceAttributes.js @@ -0,0 +1,12 @@ +import t from '../common/localization' + +export default { + 'speedLimit': { + name: t('attributeSpeedLimit'), + type: 'string', + }, + 'report.ignoreOdometer': { + name: t('attributeReportIgnoreOdometer'), + type: 'boolean', + }, +}; |