Commit list accounts state after difference in removed accounts is determined
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
This commit is contained in:
parent
751fd5917b
commit
19ae21d7ab
1 changed files with 1 additions and 1 deletions
|
@ -57,12 +57,12 @@ const actions = {
|
||||||
commit('setList', { id, title })
|
commit('setList', { id, title })
|
||||||
},
|
},
|
||||||
setListAccounts ({ rootState, commit }, { id, accountIds }) {
|
setListAccounts ({ rootState, commit }, { id, accountIds }) {
|
||||||
commit('setListAccounts', { id, accountIds })
|
|
||||||
rootState.api.backendInteractor.addAccountsToList({ id, accountIds })
|
rootState.api.backendInteractor.addAccountsToList({ id, accountIds })
|
||||||
rootState.api.backendInteractor.removeAccountsFromList({
|
rootState.api.backendInteractor.removeAccountsFromList({
|
||||||
id,
|
id,
|
||||||
accountIds: rootState.lists.allListsObject[id].accountIds.filter(id => !accountIds.includes(id))
|
accountIds: rootState.lists.allListsObject[id].accountIds.filter(id => !accountIds.includes(id))
|
||||||
})
|
})
|
||||||
|
commit('setListAccounts', { id, accountIds })
|
||||||
},
|
},
|
||||||
deleteList ({ rootState, commit }, { id }) {
|
deleteList ({ rootState, commit }, { id }) {
|
||||||
rootState.api.backendInteractor.deleteList({ id })
|
rootState.api.backendInteractor.deleteList({ id })
|
||||||
|
|
Loading…
Reference in a new issue