💬Core FeaturesComing Soon
Comments & Threads
Threaded commenting system with voting on lineups.
Video coming soon
Add a YouTube video ID to the topics config
Documentation
Overview
Every lineup has a comment section supporting top-level comments and threaded replies, with upvote/downvote voting.
Data Model
- Comment — belongs to a lineup + user, has
totalVotescounter - Thread — a reply belonging to a comment + user, has its own
totalVotes - CommentVote / ThreadVote — one vote per user per item, type is upvote or downvote
Voting Mechanics
- Users cannot vote on their own comments/threads
- Changing vote direction updates the
totalVotescounter atomically - Vote counts are denormalized on the comment/thread document for fast reads
Technical Details
<!-- Add details about pagination, real-time updates, etc. -->Content coming soon — add your video and detailed writeup here.