Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Brückner <johannes@dotplex.com>2020-11-02 15:15:12 +0300
committerJohannes Brückner <johannes@dotplex.com>2020-11-10 11:59:20 +0300
commitaa274e8451f3a55839f1c23799cd11f5d9491c33 (patch)
tree90ad5644e2732c932a7936e86a48cedf33c60035 /src/store/getters.js
parent156573989ff58c7ce3de85b3dd12ef20f5f80a2b (diff)
Store collapsed-folder settings in abstracted account settings
Signed-off-by: Johannes Brückner <johannes@dotplex.com>
Diffstat (limited to 'src/store/getters.js')
-rw-r--r--src/store/getters.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/store/getters.js b/src/store/getters.js
index 99bb27e3c..3b75c5699 100644
--- a/src/store/getters.js
+++ b/src/store/getters.js
@@ -31,6 +31,9 @@ export const getters = {
getAccount: (state) => (id) => {
return state.accounts[id]
},
+ getAllAccountSettings: (state) => {
+ return state.allAccountSettings
+ },
accounts: (state) => {
return state.accountList.map((id) => state.accounts[id])
},