Changes between Version 1 and Version 2 of WatchingLessons


Ignore:
Timestamp:
01/22/26 03:42:57 (15 hours ago)
Author:
221296
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WatchingLessons

    v1 v2  
    33==== Actors: **Registered User (USER)**
    44
    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.
    106
    117{{{#!sql
    12 INSERT INTO quiz_attempt (score, attempt_date, user_id, quiz_id)
    13 VALUES (85, CURRENT_DATE, 1, 2);
     8SELECT module_id, title, description
     9FROM module
     10WHERE course_id = :courseId;
     11
     12}}}
    1413
    1514
     15**2.** Load Lessons for a Module.
     16
     17
     18{{{#!sql
     19SELECT lesson_id, title, material
     20FROM lesson
     21WHERE module_id = :moduleId;
     22
    1623}}}