Add returned user to store after following.

This commit is contained in:
Roger Braun 2016-12-23 16:16:02 +01:00
parent fc268c48bc
commit 2088b3c4dd
1 changed files with 3 additions and 2 deletions

View File

@ -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]))
}
}
}