mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 12:18:48 +00:00
Add Transmission widget
- Update http.js to support writing request bodies - Update http.js to support returning all response headers resolves: #104
This commit is contained in:
parent
406358aae9
commit
b3db549a65
8 changed files with 148 additions and 4 deletions
|
@ -8,6 +8,7 @@ import Portainer from "./widgets/service/portainer";
|
|||
import Emby from "./widgets/service/emby";
|
||||
import Nzbget from "./widgets/service/nzbget";
|
||||
import SABnzbd from "./widgets/service/sabnzbd";
|
||||
import Transmission from "./widgets/service/transmission";
|
||||
import Docker from "./widgets/service/docker";
|
||||
import Pihole from "./widgets/service/pihole";
|
||||
import Rutorrent from "./widgets/service/rutorrent";
|
||||
|
@ -31,6 +32,8 @@ const widgetMappings = {
|
|||
emby: Emby,
|
||||
jellyfin: Jellyfin,
|
||||
nzbget: Nzbget,
|
||||
sabnzbd: SABnzbd,
|
||||
transmission: Transmission,
|
||||
pihole: Pihole,
|
||||
rutorrent: Rutorrent,
|
||||
speedtest: Speedtest,
|
||||
|
@ -41,7 +44,6 @@ const widgetMappings = {
|
|||
npm: Npm,
|
||||
tautulli: Tautulli,
|
||||
gotify: Gotify,
|
||||
sabnzbd: SABnzbd
|
||||
};
|
||||
|
||||
export default function Widget({ service }) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue