summaryrefslogtreecommitdiffstats
path: root/views/conversation/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'views/conversation/main.qml')
-rw-r--r--views/conversation/main.qml26
1 files changed, 22 insertions, 4 deletions
diff --git a/views/conversation/main.qml b/views/conversation/main.qml
index cb42fe5c..f2d28d26 100644
--- a/views/conversation/main.qml
+++ b/views/conversation/main.qml
@@ -34,12 +34,18 @@ ApplicationWindow {
34 accounts: [{ 34 accounts: [{
35 id: "account1", 35 id: "account1",
36 name: "Test Account" 36 name: "Test Account"
37 }], 37 },
38 {
39 id: "account2",
40 name: "Test Account2"
41 }
42 ],
38 identities: [{ 43 identities: [{
39 account: "account1", 44 account: "account1",
40 name: "Test Identity", 45 name: "Test Identity",
41 address: "identity@example.org" 46 address: "identity@example.org"
42 }], 47 }
48 ],
43 resources: [{ 49 resources: [{
44 id: "resource1", 50 id: "resource1",
45 account: "account1", 51 account: "account1",
@@ -49,7 +55,13 @@ ApplicationWindow {
49 id: "resource2", 55 id: "resource2",
50 account: "account1", 56 account: "account1",
51 type: "mailtransport" 57 type: "mailtransport"
52 }], 58 },
59 {
60 id: "resource3",
61 account: "account2",
62 type: "dummy"
63 }
64 ],
53 folders: [{ 65 folders: [{
54 id: "folder1", 66 id: "folder1",
55 resource: "resource1", 67 resource: "resource1",
@@ -203,7 +215,13 @@ Bvr+rojxTJ3X+pzb2LJQwJnALL/VdIF3yHtGu2//Yfu4oxGGA0M90KiW
203 ], 215 ],
204 }, 216 },
205 ] 217 ]
206 }], 218 },
219 {
220 id: "folder2",
221 resource: "resource1",
222 name: "Folder 2"
223 }
224 ],
207 } 225 }
208 TestStore.setup(initialState) 226 TestStore.setup(initialState)
209 } 227 }