mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-02 11:36:27 -04:00
a little documentation
This commit is contained in:
parent
8b5997691e
commit
1c5bce8afa
2 changed files with 13 additions and 1 deletions
|
@ -244,6 +244,8 @@ router.get("/api/badge/:id/:type", cache("5 minutes"), async (request, response)
|
|||
const badgeValues = {};
|
||||
|
||||
if (!publicMonitor) {
|
||||
// return a "n/a" badge in grey, if monitor is not public / not available / non exsitant
|
||||
|
||||
badgeValues.message = "N/A";
|
||||
badgeValues.color = "#CCCCCC";
|
||||
} else {
|
||||
|
@ -261,9 +263,9 @@ router.get("/api/badge/:id/:type", cache("5 minutes"), async (request, response)
|
|||
badgeValues.message = [prefix, `${uptime * 100} %`, suffix]
|
||||
.filter((part) => part ?? part !== "")
|
||||
.join("");
|
||||
|
||||
}
|
||||
|
||||
// build the svg based on given values
|
||||
const svg = makeBadge(badgeValues);
|
||||
|
||||
response.type("image/svg+xml");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue