-
Notifications
You must be signed in to change notification settings - Fork 62
Description
When a user posts a message in a community channel/forum, community organizers and leaders do not receive any notification or email. Messages are stored and visible in the UI, but no alert is triggered for admins unless they are actively online.
Expected Behavior
On creation of a channel/forum message:
Organizers and leaders should be notified
Message author should be excluded
Notification preferences should be respected (if available)
Suggested Backend Approach
This appears to require backend support:
Trigger notification logic on message creation (after_create)
Resolve recipients:
Community organizers and leaders
Exclude message author
Dispatch notifications via background job (Resque/Sidekiq)
Send email notifications (primary), in-app notifications optional
Optional rate limiting / batching for high-traffic channels