mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 18:29:14 +00:00
feat: add notifications (#216)
* feat: initial notifications support * chore: update deps
This commit is contained in:
parent
3185832708
commit
431742fd94
20 changed files with 1632 additions and 36 deletions
10
web/src/types/Notification.d.ts
vendored
Normal file
10
web/src/types/Notification.d.ts
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
type NotificationType = 'DISCORD';
|
||||
|
||||
interface Notification {
|
||||
id: number;
|
||||
name: string;
|
||||
enabled: boolean;
|
||||
type: NotificationType;
|
||||
events: string[];
|
||||
webhook: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue