Browse Source
Merge pull request #854 from 634750802/patch-1
Add a status prefix for feishu notification's title
pull/869/head
Louis Lam
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
server/notification-providers/feishu.js
|
|
@ -27,7 +27,7 @@ class Feishu extends NotificationProvider { |
|
|
|
content: { |
|
|
|
post: { |
|
|
|
zh_cn: { |
|
|
|
title: "UptimeKuma Alert: " + monitorJSON["name"], |
|
|
|
title: "UptimeKuma Alert: [Down] " + monitorJSON["name"], |
|
|
|
content: [ |
|
|
|
[ |
|
|
|
{ |
|
|
@ -54,7 +54,7 @@ class Feishu extends NotificationProvider { |
|
|
|
content: { |
|
|
|
post: { |
|
|
|
zh_cn: { |
|
|
|
title: "UptimeKuma Alert: " + monitorJSON["name"], |
|
|
|
title: "UptimeKuma Alert: [Up] " + monitorJSON["name"], |
|
|
|
content: [ |
|
|
|
[ |
|
|
|
{ |
|
|
|