Add returned user to store after following.

environments/dev/deployments/1
Roger Braun 8 years ago
parent fc268c48bc
commit 2088b3c4dd

@ -59,8 +59,9 @@
},
methods: {
followUser () {
this.$store.state.api.backendInteractor.followUser(this.user.id)
.then((x) => console.log)
const store = this.$store
store.state.api.backendInteractor.followUser(this.user.id)
.then((followedUser) => store.commit('addNewUsers', [followedUser]))
}
}
}

Loading…
Cancel
Save