forked from mirrors/amputoma-fe
0995658757
backend interactor service: remove unused fetchFollowRequests
20 lines
435 B
JavaScript
20 lines
435 B
JavaScript
const NavPanel = {
|
|
created () {
|
|
if (this.currentUser && this.currentUser.locked) {
|
|
this.$store.dispatch('startFetchingFollowRequest')
|
|
}
|
|
},
|
|
computed: {
|
|
currentUser () {
|
|
return this.$store.state.users.currentUser
|
|
},
|
|
chat () {
|
|
return this.$store.state.chat.channel
|
|
},
|
|
followRequestCount () {
|
|
return this.$store.state.api.followRequests.length
|
|
}
|
|
}
|
|
}
|
|
|
|
export default NavPanel
|