Feature Request
Problem
The DiscussionPost system has basic like/dislike but no threaded replies visible on the post page. ReplyPost exists but there's no feature to @mention users or get notifications when someone replies.
Proposed Solution
- Support @username mentions in DiscussionPost and ReplyPost descriptions
- When a user is @mentioned, store a notification in the database
- Add a /api/notifications endpoint listing mentions and replies to user's posts
- Frontend: notification bell with unread count
Technical Notes
The DiscussionPostManage and DiscussionReplyManage classes already handle CRUD. The mention detection can use a regex pattern on the description field before saving.
Feature Request
Problem
The DiscussionPost system has basic like/dislike but no threaded replies visible on the post page. ReplyPost exists but there's no feature to @mention users or get notifications when someone replies.
Proposed Solution
Technical Notes
The DiscussionPostManage and DiscussionReplyManage classes already handle CRUD. The mention detection can use a regex pattern on the description field before saving.