Quick reactions

This commit is contained in:
N-Pex 2020-11-25 14:42:50 +01:00
parent 5589131c86
commit 29acde8604
15 changed files with 454 additions and 137 deletions

View file

@ -38,6 +38,11 @@ export default {
return this.$store.state.auth.user;
},
currentUserId() {
const user = this.currentUser || {}
return user.user_id;
},
currentRoomId() {
return this.$store.state.currentRoomId;
},