Merge branch 'feature/mutes' into develop

This commit is contained in:
Roger Braun 2017-02-20 18:06:01 +01:00
commit 9763009d86
5 changed files with 50 additions and 8 deletions

View file

@ -82,6 +82,7 @@
toggleMute () {
const store = this.$store
store.commit('setMuted', {user: this.user, muted: !this.user.muted})
store.state.api.backendInteractor.setUserMute(this.user)
}
}
}