feat(notif): add Pushbullet channel tag (#2198)

* feat(notif): add pushbullet channel tag to server notif settings

* feat(notif): suggested changes

* docs(notif): add pushbullet channel tag
This commit is contained in:
Danshil Kokil Mungur
2022-01-20 15:38:24 +04:00
committed by GitHub
parent eb9ca2e86f
commit f9200b7977
6 changed files with 36 additions and 7 deletions

View File

@@ -181,6 +181,7 @@ export interface NotificationAgentTelegram extends NotificationAgentConfig {
export interface NotificationAgentPushbullet extends NotificationAgentConfig {
options: {
accessToken: string;
channelTag?: string;
};
}