feat(notifications): Slack, Telegram, and in-app notification channels#155
Merged
Conversation
…nnels - Add Slack and Telegram as new notification channel types (DB schema, Go dispatch via Incoming Webhooks / Bot API, TypeScript CRUD + test) - Add in-app notifications table with per-user fan-out from the Go ingest service on every alert fire/resolve event - Add notification bell component in topbar with unread badge (red), dropdown of recent notifications, and "View all" link - Add /notifications page with filterable list, expand-on-click, mark-as-read, mark-all-read, delete, and pagination - Add Notification Settings card to org Settings (enable/disable, roles that receive, allow user opt-out) - Add per-user notifications opt-out toggle on the Profile page - Add Notifications sidebar link (BellPlus icon, near Checks & Alerts) - Generate and apply migration 0026_youthful_anthem Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…nels Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
notificationstable, Go ingest fan-out on every alert fire/resolve (reads org settings to determine eligible users by role/opt-out), server actions for fetch/mark-read/delete/notifications) — filterable All/Unread tabs, expandable cards with body text and resource link, mark-as-read/delete per item, mark-all-read, paginated (25/page)0026_youthful_anthem.sqladdsnotificationstable,notifications_enabledcolumn onuser, and notification settings to org metadataTest plan
pnpm run db:generate && pnpm run db:migrate— migration applies cleanly (already done)pnpm run build— zero TypeScript errors (already verified)go build ./...— Go compiles cleanly (already verified)/notificationspage renders with full list🤖 Generated with Claude Code