Files
homepage/src/widgets/nzbget/widget.js
2024-09-10 00:13:36 -07:00

16 lines
267 B
JavaScript

import jsonrpcProxyHandler from "utils/proxy/handlers/jsonrpc";
const widget = {
api: "{url}/jsonrpc",
proxyHandler: jsonrpcProxyHandler,
allowedEndpoints: /status/,
mappings: {
status: {
endpoint: "status",
},
},
};
export default widget;