Changes between Version 1 and Version 2 of WatchingLessons
- Timestamp:
- 01/22/26 03:42:57 (15 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WatchingLessons
v1 v2 3 3 ==== Actors: **Registered User (USER)** 4 4 5 **1.** The user opens a lesson. 6 7 **2.** The user takes a quiz. 8 9 **3.** The system stores the quiz attempt. 5 **1.** Load Modules for a Course. 10 6 11 7 {{{#!sql 12 INSERT INTO quiz_attempt (score, attempt_date, user_id, quiz_id) 13 VALUES (85, CURRENT_DATE, 1, 2); 8 SELECT module_id, title, description 9 FROM module 10 WHERE course_id = :courseId; 11 12 }}} 14 13 15 14 15 **2.** Load Lessons for a Module. 16 17 18 {{{#!sql 19 SELECT lesson_id, title, material 20 FROM lesson 21 WHERE module_id = :moduleId; 22 16 23 }}}
