Skip to content

Commit

Permalink
Return proper mock data for leason status
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru-calinoiu committed Nov 25, 2023
1 parent dedd704 commit 71341c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion TeacherWorkout.Data/Repositories/LessonStatusRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public IEnumerable<LessonStatus> List(LessonStatusFilter filter)
return lessons.Select(l => new LessonStatus
{
Lesson = l,
CurrentLessonStep = new ExerciseStep(),
CurrentLessonStep = new ExerciseStep {
Question = "Some very important question?"
},
PercentCompleted = 1
});
}
Expand Down

0 comments on commit 71341c6

Please sign in to comment.