mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
add shields.io 'style' parameter
This commit is contained in:
parent
7abbf421d0
commit
f455e3a454
1 changed files with 7 additions and 4 deletions
|
@ -225,6 +225,7 @@ router.get("/api/badge/:id/status", cache("5 minutes"), async (request, response
|
|||
downLabel = "Down",
|
||||
upColor = badgeConstants.defaultUpColor,
|
||||
downColor = badgeConstants.defaultDownColor,
|
||||
style = "flat",
|
||||
value // for demo purpose only
|
||||
} = request.query;
|
||||
|
||||
|
@ -243,7 +244,7 @@ router.get("/api/badge/:id/status", cache("5 minutes"), async (request, response
|
|||
[requestedMonitorId]
|
||||
);
|
||||
|
||||
const badgeValues = {};
|
||||
const badgeValues = { style };
|
||||
|
||||
if (!publicMonitor) {
|
||||
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
||||
|
@ -279,6 +280,7 @@ router.get("/api/badge/:id/uptime/:duration?", cache("5 minutes"), async (reques
|
|||
suffix = "%",
|
||||
color,
|
||||
labelColor,
|
||||
style = "flat",
|
||||
value // for demo purpose only
|
||||
} = request.query;
|
||||
|
||||
|
@ -299,7 +301,7 @@ router.get("/api/badge/:id/uptime/:duration?", cache("5 minutes"), async (reques
|
|||
[requestedMonitorId]
|
||||
);
|
||||
|
||||
const badgeValues = {};
|
||||
const badgeValues = { style };
|
||||
|
||||
if (!publicMonitor) {
|
||||
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
||||
|
@ -345,7 +347,8 @@ router.get("/api/badge/:id/ping/:duration?", cache("5 minutes"), async (request,
|
|||
suffix = "ms",
|
||||
color = badgeConstants.defaultPingColor,
|
||||
labelColor,
|
||||
value
|
||||
style = "flat",
|
||||
value // for demo purpose only
|
||||
} = request.query;
|
||||
|
||||
try {
|
||||
|
@ -368,7 +371,7 @@ router.get("/api/badge/:id/ping/:duration?", cache("5 minutes"), async (request,
|
|||
[-requestedDuration, requestedMonitorId]
|
||||
));
|
||||
|
||||
const badgeValues = {};
|
||||
const badgeValues = { style };
|
||||
|
||||
if (!publicAvgPing) {
|
||||
// return a "N/A" badge in naColor (grey), if monitor is not public / not available / non exsitant
|
||||
|
|
Loading…
Reference in a new issue