Add AdGuard, Bazarr, and Coin Market Cap widgets

- Allow setting HTTP method in widget.js
- Allow sending allow listed query params to proxy
This commit is contained in:
Jason Fischer
2022-09-25 14:31:41 -07:00
parent f999f4a467
commit 03fa2f86d7
10 changed files with 251 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
import genericProxyHandler from "utils/proxies/generic";
const widget = {
api: "{url}/control/{endpoint}",
proxyHandler: genericProxyHandler,
mappings: {
"stats": {
endpoint: "stats",
},
},
};
export default widget;