mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-02 11:36:27 -04:00
Add Grafana Oncall notification provider (#2783)
* Add Grafana Oncall notification provider * Fix linter errors * Remove useless variables * Remove test message Co-authored-by: Frank Elsinga <frank@elsinga.de> * spelling consistency * Update server/notification-providers/grafana-oncall.js Co-authored-by: Frank Elsinga <frank@elsinga.de> * Update server/notification-providers/grafana-oncall.js Co-authored-by: Frank Elsinga <frank@elsinga.de> * eslint requirements Co-authored-by: Matthew Nickson <mnickson@sidingsmedia.com> * Add Grafana Oncall translation * Update src/components/notifications/GrafanaOncall.vue Co-authored-by: Frank Elsinga <frank@elsinga.de> * Check empty url --------- Co-authored-by: Emmanuel Cohen <emmanuel.cohen@bso.co> Co-authored-by: Frank Elsinga <frank@elsinga.de> Co-authored-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
This commit is contained in:
parent
8412e19fe6
commit
9b599ccd1d
6 changed files with 75 additions and 1 deletions
|
@ -14,6 +14,7 @@ const FreeMobile = require("./notification-providers/freemobile");
|
|||
const GoogleChat = require("./notification-providers/google-chat");
|
||||
const Gorush = require("./notification-providers/gorush");
|
||||
const Gotify = require("./notification-providers/gotify");
|
||||
const GrafanaOncall = require("./notification-providers/grafana-oncall");
|
||||
const HomeAssistant = require("./notification-providers/home-assistant");
|
||||
const Kook = require("./notification-providers/kook");
|
||||
const Line = require("./notification-providers/line");
|
||||
|
@ -84,6 +85,7 @@ class Notification {
|
|||
new GoogleChat(),
|
||||
new Gorush(),
|
||||
new Gotify(),
|
||||
new GrafanaOncall(),
|
||||
new HomeAssistant(),
|
||||
new Kook(),
|
||||
new Line(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue