Skip to content

Commit

Permalink
Fix answers mock data
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru-calinoiu committed Nov 25, 2023
1 parent 36fd8f4 commit 653f4cf
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions TeacherWorkout.Data/Repositories/LessonStatusRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,17 @@ public IEnumerable<LessonStatus> List(LessonStatusFilter filter)
return lessons.Select(l => new LessonStatus
{
Lesson = l,
CurrentLessonStep = new ExerciseStep {
Question = "Some very important question?"
CurrentLessonStep = new ExerciseStep
{
Question = "Some very important question?",
Answers = new List<Answer> {
new() {
Title = "Yes"
},
new() {
Title = "Awesome"
}
}
},
PercentCompleted = 1
});
Expand Down

0 comments on commit 653f4cf

Please sign in to comment.