Skip to content
2 changes: 2 additions & 0 deletions artificial_u/models/repositories/lecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,7 @@ def update_fields(self, lecture_id: int, update_data: Dict[str, any]) -> Lecture
"transcript_url",
"course_id",
"topic_id",
"voice_id",
"created_by",
"created_with",
}
Expand All @@ -574,6 +575,7 @@ def update_fields(self, lecture_id: int, update_data: Dict[str, any]) -> Lecture
transcript_url=db_lecture.transcript_url,
course_id=db_lecture.course_id,
topic_id=db_lecture.topic_id,
voice_id=db_lecture.voice_id,
word_count=db_lecture.word_count,
created_by=db_lecture.created_by,
created_with=db_lecture.created_with,
Expand Down