backend: add todo to notify participant of role/permission changes when updating room member

This commit is contained in:
juancarmore 2026-01-14 13:41:38 +01:00
parent 7ee20f31c1
commit 94fbd55ed8

View File

@ -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;
}
/**