Option to delete a post is shown when privileged with messages_delete

This commit is contained in:
Ilja 2022-08-06 14:00:29 +02:00
parent 0d714f07ec
commit 6c9768b8e2
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ const ExtraButtons = {
currentUser () { return this.$store.state.users.currentUser },
canDelete () {
if (!this.currentUser) { return }
const superuser = this.currentUser.rights.moderator || this.currentUser.rights.admin
return superuser || this.status.user.id === this.currentUser.id
return this.currentUser.privileges.includes('messages_delete') || this.status.user.id === this.currentUser.id
},
ownStatus () {
return this.status.user.id === this.currentUser.id