backend: add todo to notify participant of role/permission changes when updating room member
This commit is contained in:
parent
7ee20f31c1
commit
94fbd55ed8
@ -188,7 +188,13 @@ export class RoomMemberService {
|
||||
member.customPermissions = updates.customPermissions;
|
||||
}
|
||||
|
||||
return this.roomMemberRepository.update(member);
|
||||
const updatedMember = await this.roomMemberRepository.update(member);
|
||||
|
||||
if (updatedMember.currentParticipantIdentity) {
|
||||
// TODO: Notify participant of role/permission changes if currently in a meeting
|
||||
}
|
||||
|
||||
return updatedMember;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user