forked from AkkomaGang/akkoma-fe
No need to fetch user data using old api anymore 🎉
This commit is contained in:
parent
af85a3f244
commit
883a84b313
1 changed files with 0 additions and 5 deletions
|
@ -212,11 +212,6 @@ const users = {
|
||||||
},
|
},
|
||||||
fetchMutes (store) {
|
fetchMutes (store) {
|
||||||
return store.rootState.api.backendInteractor.fetchMutes()
|
return store.rootState.api.backendInteractor.fetchMutes()
|
||||||
.then((mutes) => {
|
|
||||||
// fetchMutes api doesn't return full user data, let's fetch full user data using separate api calls
|
|
||||||
const promises = mutes.map(({ id }) => store.rootState.api.backendInteractor.fetchUser({ id }))
|
|
||||||
return Promise.all(promises)
|
|
||||||
})
|
|
||||||
.then((mutes) => {
|
.then((mutes) => {
|
||||||
store.commit('updateMutes', mutes)
|
store.commit('updateMutes', mutes)
|
||||||
store.commit('saveMuteIds', map(mutes, 'id'))
|
store.commit('saveMuteIds', map(mutes, 'id'))
|
||||||
|
|
Loading…
Reference in a new issue