feat(notifications): add Notifiarr support (#464)

This commit is contained in:
ze0s 2022-09-19 15:44:31 +02:00 committed by GitHub
parent f8ace9edbe
commit 63d4c21e54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 326 additions and 18 deletions

View file

@ -1,4 +1,4 @@
type NotificationType = "DISCORD" | "TELEGRAM";
type NotificationType = "DISCORD" | "NOTIFIARR" | "TELEGRAM";
type NotificationEvent = "PUSH_APPROVED" | "PUSH_REJECTED" | "PUSH_ERROR" | "IRC_DISCONNECTED" | "IRC_RECONNECTED" | "APP_UPDATE_AVAILABLE";
interface Notification {
@ -9,5 +9,6 @@ interface Notification {
events: NotificationEvent[];
webhook?: string;
token?: string;
api_key?: string;
channel?: string;
}