diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2022-08-02 06:37:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 06:37:36 -0700 |
commit | a58795c7736ae4464646398e5089968aa32c65f3 (patch) | |
tree | bc48862eb069fe8c9a5a95049b15ea250f636d57 /modern/src | |
parent | b1961a111581e9958c823087429b98f77318607e (diff) | |
parent | e6eedad6398cf37e64586cc27611a398d58121f2 (diff) | |
download | trackermap-web-a58795c7736ae4464646398e5089968aa32c65f3.tar.gz trackermap-web-a58795c7736ae4464646398e5089968aa32c65f3.tar.bz2 trackermap-web-a58795c7736ae4464646398e5089968aa32c65f3.zip |
Merge pull request #994 from lzkill/pushover-user-attributes
Adds Pushover user attributes
Diffstat (limited to 'modern/src')
-rw-r--r-- | modern/src/common/attributes/useUserAttributes.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modern/src/common/attributes/useUserAttributes.js b/modern/src/common/attributes/useUserAttributes.js index a100539e..81230884 100644 --- a/modern/src/common/attributes/useUserAttributes.js +++ b/modern/src/common/attributes/useUserAttributes.js @@ -5,6 +5,14 @@ export default (t) => useMemo(() => ({ name: t('attributeTelegramChatId'), type: 'string', }, + pushoverUserKey: { + name: t('attributePushoverUserKey'), + type: 'string', + }, + pushoverDeviceNames: { + name: t('attributePushoverDeviceNames'), + type: 'string', + }, 'mail.smtp.host': { name: t('attributeMailSmtpHost'), type: 'string', |