diff --git a/server/vbv_lernwelt/core/management/commands/cypress_reset.py b/server/vbv_lernwelt/core/management/commands/cypress_reset.py index 858cd10e..a495939a 100644 --- a/server/vbv_lernwelt/core/management/commands/cypress_reset.py +++ b/server/vbv_lernwelt/core/management/commands/cypress_reset.py @@ -43,6 +43,10 @@ from vbv_lernwelt.learnpath.models import ( LearningContentFeedbackVV, ) from vbv_lernwelt.notify.models import Notification +from vbv_lernwelt.self_evaluation_feedback.models import ( + CourseCompletionFeedback, + SelfEvaluationFeedback, +) @click.command() @@ -111,6 +115,9 @@ def command( FeedbackResponse.objects.all().delete() CourseSessionAttendanceCourse.objects.all().update(attendance_user_list=[]) + SelfEvaluationFeedback.objects.all().delete() + CourseCompletionFeedback.objects.all().delete() + LearningMentor.objects.all().delete() User.objects.all().update(organisation=Organisation.objects.first()) User.objects.all().update(language="de")