mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(notifications): on update available (#352)
This commit is contained in:
parent
b4589243de
commit
2a3a839081
11 changed files with 326 additions and 18 deletions
|
@ -305,7 +305,7 @@ export const downloadsPerUnitOptions: OptionBasic[] = [
|
|||
export interface SelectOption {
|
||||
label: string;
|
||||
description: string;
|
||||
value: string;
|
||||
value: NotificationEvent;
|
||||
}
|
||||
|
||||
export const EventOptions: SelectOption[] = [
|
||||
|
@ -333,5 +333,10 @@ export const EventOptions: SelectOption[] = [
|
|||
label: "IRC Reconnected",
|
||||
value: "IRC_RECONNECTED",
|
||||
description: "Reconnected to irc network after error"
|
||||
}
|
||||
},
|
||||
{
|
||||
label: "New update",
|
||||
value: "APP_UPDATE_AVAILABLE",
|
||||
description: "Get notified on updates"
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue