Add returned user to store after following.
This commit is contained in:
parent
fc268c48bc
commit
2088b3c4dd
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue