mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
feat: notifications for media_available and media_approved
This commit is contained in:
@@ -55,9 +55,18 @@ interface NotificationAgent {
|
||||
types: number;
|
||||
options: Record<string, unknown>;
|
||||
}
|
||||
interface NotificationAgentDiscord extends NotificationAgent {
|
||||
options: {
|
||||
webhookUrl: string;
|
||||
};
|
||||
}
|
||||
|
||||
interface NotificationAgents {
|
||||
discord: NotificationAgentDiscord;
|
||||
}
|
||||
|
||||
interface NotificationSettings {
|
||||
agents: Record<string, NotificationAgent>;
|
||||
agents: NotificationAgents;
|
||||
}
|
||||
|
||||
interface AllSettings {
|
||||
|
Reference in New Issue
Block a user