Page MenuHomePhorge

account_actions.js
No OneTemporary

Size
742 B
Referenced Files
None
Subscribers
None

account_actions.js

import ProgressButton from '../progress_button/progress_button.vue'
import Popover from '../popover/popover.vue'
const AccountActions = {
props: [
'user', 'relationship'
],
data () {
return { }
},
components: {
ProgressButton,
Popover
},
methods: {
showRepeats () {
this.$store.dispatch('showReblogs', this.user.id)
},
hideRepeats () {
this.$store.dispatch('hideReblogs', this.user.id)
},
blockUser () {
this.$store.dispatch('blockUser', this.user.id)
},
unblockUser () {
this.$store.dispatch('unblockUser', this.user.id)
},
reportUser () {
this.$store.dispatch('openUserReportingModal', this.user.id)
}
}
}
export default AccountActions

File Metadata

Mime Type
text/plain
Expires
Wed, Sep 3, 11:45 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
437835
Default Alt Text
account_actions.js (742 B)

Event Timeline