Compare commits

..

1 Commits

Author SHA1 Message Date
shamoon
52a4f1a423 Fix: jsonrpchandler requires mappings (#3970)
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions
2024-09-10 00:13:36 -07:00

View File

@@ -4,6 +4,12 @@ const widget = {
api: "{url}/jsonrpc",
proxyHandler: jsonrpcProxyHandler,
allowedEndpoints: /status/,
mappings: {
status: {
endpoint: "status",
},
},
};
export default widget;