hide mute conversation button to guests

This commit is contained in:
taehoon 2019-08-20 16:55:42 -04:00
parent 6504d8ca0f
commit 92a0c475f7
2 changed files with 5 additions and 2 deletions

View file

@ -40,6 +40,9 @@ const ExtraButtons = {
},
canPin () {
return this.ownStatus && (this.status.visibility === 'public' || this.status.visibility === 'unlisted')
},
canMute () {
return !!this.currentUser
}
}
}