summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--views/inboxcrusher/main.qml21
1 files changed, 14 insertions, 7 deletions
diff --git a/views/inboxcrusher/main.qml b/views/inboxcrusher/main.qml
index c3b40e38..4065b876 100644
--- a/views/inboxcrusher/main.qml
+++ b/views/inboxcrusher/main.qml
@@ -57,23 +57,30 @@ ApplicationWindow {
57 specialpurpose: ["inbox"], 57 specialpurpose: ["inbox"],
58 mails: [{ 58 mails: [{
59 resource: "resource1", 59 resource: "resource1",
60 messageId: "<msg1@test.com>",
61 date: "2017-07-24T15:46:29",
60 subject: "subject1", 62 subject: "subject1",
61 body: "body", 63 body: "body",
62 to: ["to@example.org"], 64 to: ["to@example.org"],
63 cc: ["cc@example.org"], 65 cc: ["cc@example.org"],
64 bcc: ["bcc@example.org"], 66 bcc: ["bcc@example.org"],
65 draft: true
66 }, 67 },
67 { 68 {
68 resource: "resource1", 69 resource: "resource1",
70 inReplyTo: "<msg1@test.com>",
71 date: "2017-07-24T16:46:29",
69 subject: "subject2", 72 subject: "subject2",
70 body: "body", 73 body: "body2",
71 to: ["to@example.org"], 74 to: ["to@example.org"],
72 cc: ["cc@example.org"], 75 },
73 bcc: ["bcc@example.org"], 76 {
74 draft: true 77 resource: "resource1",
75 } 78 date: "2017-07-24T18:46:29",
76 ], 79 subject: "subject4",
80 body: "body4",
81 to: ["to@example.org"],
82 },
83 ]
77 }], 84 }],
78 } 85 }
79 TestStore.setup(initialState) 86 TestStore.setup(initialState)