make blocking functional in the search results

This commit is contained in:
taehoon 2019-04-02 13:49:48 -04:00
parent fd4289e45a
commit 69f9ea987c
3 changed files with 7 additions and 3 deletions

View file

@ -281,6 +281,9 @@ const users = {
unregisterPushNotifications(token)
},
addNewUsers ({ commit }, users) {
commit('addNewUsers', users)
},
addNewStatuses (store, { statuses }) {
const users = map(statuses, 'user')
const retweetedUsers = compact(map(statuses, 'retweeted_status.user'))