mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-13 12:42:09 +08:00
* Change healthchecks online/offline with the original up/down * Add group statistics to healthcheck widget * Update healthchecks docs --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v3/{endpoint}/{uuid}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
checks: {
|
|
endpoint: "checks",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|