style: fix linting issues met Prettier
This commit is contained in:
parent
df8f4043a8
commit
b9681926f8
10 changed files with 31 additions and 44 deletions
|
@ -37,7 +37,12 @@ export class TeacherController extends BaseController {
|
|||
return this.get<{ joinRequests: any[] }>(`/${username}/joinRequests/${classId}`);
|
||||
}
|
||||
|
||||
async updateStudentJoinRequest(teacherUsername: string, classId: string, studentUsername: string, accepted: boolean) {
|
||||
async updateStudentJoinRequest(
|
||||
teacherUsername: string,
|
||||
classId: string,
|
||||
studentUsername: string,
|
||||
accepted: boolean,
|
||||
) {
|
||||
return this.put(`/${teacherUsername}/joinRequests/${classId}/${studentUsername}`, accepted);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue