feat: Phase 4 - Notification Channel Testing#420
Merged
hossain-khan merged 1 commit intomainfrom Dec 11, 2025
Merged
Conversation
- Add individual test buttons for all 6 notification channels * Email (Mailgun) * Telegram * Twilio (SMS) * Slack Workflow * Discord * REST Webhook - Show configuration status for each channel - Display per-channel test results (success/failure) - Send test battery alert (15% level) to selected channel - Disable test buttons for unconfigured channels - Real-time testing feedback with loading indicators - Update Coming Soon list (removed Notification Channel Testing)
Code Coverage Report |
📊 APK Size AnalysisComparing APKDEX |
This was referenced Dec 11, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Phase 4 of the Developer Portal implementation adds Notification Channel Testing - individual test buttons for each of the 6 supported notification channels with real-time feedback and configuration status.
Changes
New Features
✅ Notification Channel Testing Card with per-channel controls:
User Experience
Technical Implementation
State Management:
testingChannel: NotifierType?- tracks actively testing channelchannelTestResults: Map<NotifierType, Boolean?>- stores test outcomesconfiguredChannels: Set<NotifierType>- identifies configured channelsEvent Handling:
TestNotificationChannel(channelType: NotifierType)eventUI Components:
NotificationChannelTestingCardcomposableTesting
./gradlew compileDebugKotlin- Compilation successful./gradlew lintKotlin- No lint errors (auto-formatted)./gradlew test- All tests passing (89 tasks)./gradlew assembleDebug- Debug APK builds successfullyScreenshots
Notification Channel Testing Section:
Code Example
Benefits
Related
Next Steps
Notes