From 6bd6095789b66b36f0e470bfa78e365dad5f2a7c Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 27 Jan 2026 06:36:24 +0000 Subject: [PATCH] Add Pushbullet as notification platform option (type 6) Adds Pushbullet to the notification settings dropdown with an Access Token input field and validation, matching the backend platform type 6. https://claude.ai/code/session_01Xvy61BauhjpEnJMXhRi8kX --- src/views/Settings/NotificationSetting.jsx | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/views/Settings/NotificationSetting.jsx b/src/views/Settings/NotificationSetting.jsx index 264f6ceb..1b823462 100644 --- a/src/views/Settings/NotificationSetting.jsx +++ b/src/views/Settings/NotificationSetting.jsx @@ -208,6 +208,12 @@ const NotificationSetting = () => { return false } break + case '6': + if (chatID === '') { + setError('Access Token is required') + return false + } + break default: break } @@ -672,6 +678,7 @@ const NotificationSetting = () => { + {notificationTarget === '1' && ( <> @@ -729,6 +736,31 @@ const NotificationSetting = () => { /> )} + {notificationTarget === '6' && ( + <> + Access Token + setChatID(e.target.value)} + placeholder='Access Token' + sx={{ + width: '200px', + }} + /> + + You can get your Access Token from{' '} + + Pushbullet Settings + + + + )} {error && ( {error}