mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 14:38:47 +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
|
@ -3,6 +3,7 @@ import credentialedProxyHandler from "utils/proxies/credentialed";
|
|||
import rutorrentProxyHandler from "utils/proxies/rutorrent";
|
||||
import nzbgetProxyHandler from "utils/proxies/nzbget";
|
||||
import npmProxyHandler from "utils/proxies/npm";
|
||||
import transmissionProxyHandler from "utils/proxies/transmission";
|
||||
|
||||
const serviceProxyHandlers = {
|
||||
// uses query param auth
|
||||
|
@ -27,6 +28,7 @@ const serviceProxyHandlers = {
|
|||
rutorrent: rutorrentProxyHandler,
|
||||
nzbget: nzbgetProxyHandler,
|
||||
npm: npmProxyHandler,
|
||||
transmission: transmissionProxyHandler,
|
||||
};
|
||||
|
||||
export default async function handler(req, res) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue