mirror of
https://github.com/gethomepage/homepage.git
synced 2026-02-08 17:00:51 +08:00
16 lines
267 B
JavaScript
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;
|