aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/attributes/useGroupAttributes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-15 13:04:00 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-15 13:04:00 -0700
commit6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc (patch)
tree8712dcf947f4e6fa0795faa4667e9bb787775d72 /modern/src/common/attributes/useGroupAttributes.js
parent5faf345b841da9af97a45cc057a58b63b2379388 (diff)
downloadtrackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.tar.gz
trackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.tar.bz2
trackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.zip
Update known attributes
Diffstat (limited to 'modern/src/common/attributes/useGroupAttributes.js')
-rw-r--r--modern/src/common/attributes/useGroupAttributes.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/modern/src/common/attributes/useGroupAttributes.js b/modern/src/common/attributes/useGroupAttributes.js
new file mode 100644
index 00000000..53a299e1
--- /dev/null
+++ b/modern/src/common/attributes/useGroupAttributes.js
@@ -0,0 +1,12 @@
+import { useMemo } from 'react';
+
+export default (t) => useMemo(() => ({
+ 'processing.copyAttributes': {
+ name: t('attributeProcessingCopyAttributes'),
+ type: 'string',
+ },
+ 'decoder.timezone': {
+ name: t('sharedTimezone'),
+ type: 'string',
+ },
+}), [t]);