mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-02 05:23:39 +01:00
19 lines
352 B
JavaScript
19 lines
352 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "https://healthchecks.io/api/v2/{endpoint}/{uuid}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
checks: {
|
|
endpoint: "checks",
|
|
validate: [
|
|
"status",
|
|
"last_ping",
|
|
]
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|