Rate & Review a build
Actors
User, Admin
Scenario
- The user opens the completed builds page, opens the details popup for a build
- The user clicks on "REVIEWS" and an option to rate and write a review for the build is displayed
- The user rates the build and writes a review
- The user clicks on "SUBMIT REVIEW" and the rating and review are submitted
INSERT INTO rating_build (user_id, build_id, value) VALUES ($userId, $buildId, $value) ON CONFLICT (user_id, build_id) DO UPDATE SET value = $value
INSERT INTO review (user_id, build_id, content, created_at) VALUES ($userId, $buildId, $content, $createdAt) ON CONFLICT (build_id, user_id) DO UPDATE SET content = $content, created_at = $createdAt
Last modified
18 hours ago
Last modified on 12/29/25 03:41:02
Attachments (4)
- showBuildDetails.png (234.4 KB ) - added by 20 hours ago.
- clickReview.png (182.7 KB ) - added by 20 hours ago.
- writeReview.png (183.7 KB ) - added by 20 hours ago.
- buildReviewed.png (174.3 KB ) - added by 20 hours ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.




