Changes between Initial Version and Version 1 of SubmitBuild
- Timestamp:
- 12/29/25 01:21:25 (8 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SubmitBuild
v1 v1 1 == Submit a build for review == 2 3 === Actors === 4 User, Admin 5 6 === Scenario === 7 1. In the forge, after the user is satisfied with their components, they scroll to the bottom of the page and click "SUBMIT BUILD FOR REVIEW" 8 2. The server saves the build and sends it to the admin for approval 9 10 {{{ 11 12 SELECT id, is_approved 13 FROM build 14 WHERE id = $buildId 15 AND user_id = $userId 16 LIMIT 1; 17 18 UPDATE build 19 SET name = $name, 20 description = $description 21 WHERE id = $buildId 22 }}}
