Skip to content

Commit

Permalink
add roleName to mock-participants list
Browse files Browse the repository at this point in the history
  • Loading branch information
muratmerdoglu-dp committed Oct 23, 2024
1 parent 31858ab commit c188f55
Show file tree
Hide file tree
Showing 2 changed files with 174 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export class RoomParticipantResponse {
@ApiProperty()
fullName!: string;

@ApiProperty()
roleName!: string;

@ApiProperty()
schoolName!: string;

Expand All @@ -22,6 +25,7 @@ export class RoomParticipantResponse {
this.firstName = props.firstName;
this.lastName = props.lastName;
this.fullName = props.fullName;
this.roleName = props.roleName;
this.schoolName = props.schoolName;
}
}
Expand Down
Loading

0 comments on commit c188f55

Please sign in to comment.