From 37ef7a548a517bc2fa7616fa3b521791c0733a37 Mon Sep 17 00:00:00 2001 From: Matt Bentley Date: Fri, 18 Nov 2022 19:44:45 -0500 Subject: [PATCH] Adds SABnzbd custom service; fixes #494 Signed-off-by: Matt Bentley --- docs/customservices.md | 15 +++++ src/components/services/SABnzbd.vue | 94 +++++++++++++++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 src/components/services/SABnzbd.vue diff --git a/docs/customservices.md b/docs/customservices.md index 7448a8c00..640304ef4 100644 --- a/docs/customservices.md +++ b/docs/customservices.md @@ -30,6 +30,7 @@ within Homer: - [CopyToClipboard](#copy-to-clipboard) - [Speedtest Tracker](#SpeedtestTracker) - [What's Up Docker](#whats-up-docker) + - [SABnzbd](#sabnzbd) If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. @@ -361,3 +362,17 @@ The following configuration is available for the WUD service. url: "http://192.168.1.12:3001" type: "WUD" ``` + +## SABnzbd + +The SABnzbd service can allow you to show the number of currently active +downloads on your SABnzbd instance. An API key is required, and can be obtained from +the "Config" > "General" section of the SABnzbd config in the SABnzbd web UI. + +```yaml +- name: "SABnzbd" + logo: "assets/tools/sample.png" + url: "http://192.168.0.151:8080" + type: "SABnzbd" + apikey: "MY-SUPER-SECRET-API-KEY" +``` diff --git a/src/components/services/SABnzbd.vue b/src/components/services/SABnzbd.vue new file mode 100644 index 000000000..a41c110f5 --- /dev/null +++ b/src/components/services/SABnzbd.vue @@ -0,0 +1,94 @@ + + + + +