Remove capital from octoprint widget

remove

add
This commit is contained in:
Michael Shamoon
2023-01-20 07:04:17 -08:00
parent 01eea51555
commit d27b795d81
5 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/api/{endpoint}?apikey={key}",
proxyHandler: genericProxyHandler,
mappings: {
printer_stats: {
endpoint: "printer",
},
job_stats: {
endpoint: "job",
},
},
};
export default widget;