Add Docker, Emby, Gotify, Jackett, and JellySeerr widgets

This commit is contained in:
Jason Fischer
2022-09-25 16:15:47 -07:00
parent 035dd25ece
commit 808e79e2ac
15 changed files with 510 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
import genericProxyHandler from "utils/proxies/generic";
const widget = {
api: "{url}/emby/{endpoint}?api_key={key}",
proxyHandler: genericProxyHandler,
mappings: {
"Sessions": {
endpoint: "Sessions",
},
"PlayControl": {
method: "POST",
enpoint: "Sessions/{sessionId}/Playing/{command}",
segments: ["sessionId", "command"]
}
},
};
export default widget;