Show notification for new invites
This commit is contained in:
parent
6daaac8392
commit
5193e3e9f3
2 changed files with 8 additions and 2 deletions
|
|
@ -87,6 +87,12 @@ export default {
|
|||
return room.selfMembership === "invite";
|
||||
});
|
||||
},
|
||||
|
||||
joinedAndInvitedRooms() {
|
||||
return this.rooms.filter((room) => {
|
||||
return room.selfMembership === "join" || room.selfMembership === "invite";
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue