mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v2/{endpoint}/{uuid}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
checks: {
|
|
endpoint: "checks",
|
|
validate: [
|
|
"status",
|
|
"last_ping",
|
|
]
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|