Add comment

feat/gesture-service
taehoon 6 years ago
parent d7919109ec
commit a0bccbce94

@ -111,6 +111,7 @@ export const mutations = {
state.currentUser.blockIds = blockIds state.currentUser.blockIds = blockIds
}, },
updateMutes (state, mutedUsers) { updateMutes (state, mutedUsers) {
// Reset muted of all fetched users
each(state.users, (user) => { user.muted = false }) each(state.users, (user) => { user.muted = false })
// TODO: Remove this line once we get muted property of user object from the api // TODO: Remove this line once we get muted property of user object from the api
const newUsers = map(mutedUsers, (user) => ({ ...user, muted: true })) const newUsers = map(mutedUsers, (user) => ({ ...user, muted: true }))

Loading…
Cancel
Save