17 lines
667 B
Markdown
17 lines
667 B
Markdown
# Task: Review Enhancements (Blurb Field)
|
|
|
|
## Objective
|
|
Add a "blurb" (one-liner/pullquote) field to comments/reviews to allow for better display in compact UI lists.
|
|
|
|
## Steps
|
|
- [ ] **Backend**:
|
|
- [ ] Update `Comment` model in `models.py` to include `blurb: Optional[str]`.
|
|
- [ ] Update `Comment` schemas in `schemas.py`.
|
|
- [ ] Generate and apply migration.
|
|
- [ ] **Frontend**:
|
|
- [ ] Update `CommentSection` to allow inputting a blurb.
|
|
- [ ] Update `CommentSection` to display the blurb (e.g., as a bold lead-in).
|
|
|
|
## Acceptance Criteria
|
|
- User can add a short blurb when creating a comment.
|
|
- Blurb is displayed prominently in the comment list.
|