style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-06 20:32:13 +00:00
parent b963101f62
commit 34facfe7c8
12 changed files with 70 additions and 72 deletions

View file

@ -58,12 +58,12 @@ export class QuestionRepository extends DwengoEntityRepository<Question> {
public async findAllByAssignment(assignment: Assignment): Promise<Question[]> {
return this.find({
author: assignment.groups.flatMap(group => group.members),
author: assignment.groups.flatMap((group) => group.members),
learningObjectHruid: assignment.learningPathHruid,
learningObjectLanguage: assignment.learningPathLanguage,
});
}
public async findAllByAuthor(author: Student): Promise<Question[]> {
return this.findAll({
where: { author },