akkoma-fe/src/components/delete_button/delete_button.js

18 lines
504 B
JavaScript
Raw Normal View History

const DeleteButton = {
props: [ 'status' ],
methods: {
deleteStatus () {
const confirmed = confirm('Do you really want to delete this status?')
if (confirmed) {
this.$store.dispatch('deleteStatus', { id: this.status.id })
}
}
},
computed: {
2016-12-08 19:26:05 +00:00
currentUser () { return this.$store.state.users.currentUser },
2016-12-19 16:03:02 +00:00
canDelete () { return this.currentUser.rights.delete_others_notice || this.status.user.id == this.currentUser.id }
}
}
export default DeleteButton