fix: merge + types frontend controller
This commit is contained in:
parent
4ca568e738
commit
8ceed7f779
20 changed files with 129 additions and 92 deletions
7
common/src/interfaces/class-join-request.d.ts
vendored
Normal file
7
common/src/interfaces/class-join-request.d.ts
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
import {StudentDTO} from "./student";
|
||||
|
||||
export interface ClassJoinRequestDTO {
|
||||
requester: StudentDTO;
|
||||
class: string;
|
||||
status: ClassJoinRequestStatus;
|
||||
}
|
6
common/src/interfaces/student.d.ts
vendored
6
common/src/interfaces/student.d.ts
vendored
|
@ -3,10 +3,4 @@ export interface StudentDTO {
|
|||
username: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
endpoints?: {
|
||||
classes: string;
|
||||
questions: string;
|
||||
invitations: string;
|
||||
groups: string;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue