Skip to content

Commit 5d8a83a

Browse files
authored
Merge pull request #679 from gnmyt/features/pushover-integration
⏩ Pushover Integration hinzugefügt
2 parents 2d13a6c + dbf2cab commit 5d8a83a

File tree

16 files changed

+81
-11
lines changed

16 files changed

+81
-11
lines changed

client/public/assets/locales/en.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,19 @@
311311
"finished_message_placeholder": "%ping% ms, %download% Mbps, %upload% Mbps"
312312
}
313313
},
314+
"pushover": {
315+
"title": "Pushover",
316+
"fields": {
317+
"token": "App token",
318+
"user_key": "User key",
319+
"error_message": "Error message",
320+
"error_message_placeholder": "Error: %error%",
321+
"send_failed": "Send error messages",
322+
"send_finished": "Send finished messages",
323+
"finished_message": "Finished message",
324+
"finished_message_placeholder": "%ping% ms, %download% Mbps, %upload% Mbps"
325+
}
326+
},
314327
"healthChecks": {
315328
"title": "HealthChecks",
316329
"fields": {

client/src/App.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ import {NodeProvider} from "@/common/contexts/Node";
2020
import { library } from '@fortawesome/fontawesome-svg-core';
2121
import { fas } from '@fortawesome/free-solid-svg-icons';
2222
import { fab } from "@fortawesome/free-brands-svg-icons";
23+
import {PushOverIcon} from "@/common/assets/icons/pushover";
2324

2425
library.add(fas, fab);
26+
library.add(PushOverIcon);
2527

2628
const MainContent = () => {
2729
const [view] = useContext(ViewContext);

client/src/common/assets/icons/pushover.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)