Skip to content
Snippets Groups Projects
Commit 883a84b3 authored by Tae Hoon's avatar Tae Hoon
Browse files

No need to fetch user data using old api anymore :tada:

parent af85a3f2
No related branches found
No related tags found
2 merge requests!1028`master` refresh with `develop`,!611Transition to MastoAPI: Mute & Block and Add Mutes management tab
......@@ -212,11 +212,6 @@ const users = {
},
fetchMutes (store) {
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) => {
store.commit('updateMutes', mutes)
store.commit('saveMuteIds', map(mutes, 'id'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment