remove unused mutation and test for it

This commit is contained in:
Shpuld Shpuldson 2020-04-23 11:17:52 +03:00
parent aa56147322
commit cda298c822
3 changed files with 0 additions and 27 deletions

View file

@ -83,10 +83,6 @@ const unmuteDomain = (store, domain) => {
}
export const mutations = {
setMuted (state, { user: { id }, muted }) {
const user = state.usersObject[id]
set(user, 'muted', muted)
},
tagUser (state, { user: { id }, tag }) {
const user = state.usersObject[id]
const tags = user.tags || []