style: fix linting issues met Prettier
This commit is contained in:
parent
205a4addad
commit
7f782915b6
12 changed files with 30 additions and 32 deletions
|
@ -104,10 +104,10 @@ export async function getStudentGroups(username: string, full: boolean): Promise
|
|||
const groups = await groupRepository.findAllGroupsWithStudent(student);
|
||||
|
||||
if (full) {
|
||||
return groups.map(group => mapToGroupDTO(group, group.assignment.within));
|
||||
return groups.map((group) => mapToGroupDTO(group, group.assignment.within));
|
||||
}
|
||||
|
||||
return groups.map(group => mapToGroupDTOId(group, group.assignment.within));
|
||||
return groups.map((group) => mapToGroupDTOId(group, group.assignment.within));
|
||||
}
|
||||
|
||||
export async function getStudentSubmissions(username: string, full: boolean): Promise<SubmissionDTO[] | SubmissionDTOId[]> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue