Show notification for new invites

This commit is contained in:
N Pex 2023-10-09 13:02:14 +00:00
parent 6daaac8392
commit 5193e3e9f3
2 changed files with 8 additions and 2 deletions

View file

@ -87,6 +87,12 @@ export default {
return room.selfMembership === "invite";
});
},
joinedAndInvitedRooms() {
return this.rooms.filter((room) => {
return room.selfMembership === "join" || room.selfMembership === "invite";
});
}
},
watch: {