diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-11 11:49:59 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-11 11:59:04 +0100 |
commit | d8becef1a1e36c8527f4e9bd1dcda9149158ce51 (patch) | |
tree | b31a5261cc26233c980525d49e3ce34560d06eeb /views | |
parent | 738d6e6a8402ac11245ec738da75920b39ad6830 (diff) | |
download | kube-d8becef1a1e36c8527f4e9bd1dcda9149158ce51.tar.gz kube-d8becef1a1e36c8527f4e9bd1dcda9149158ce51.zip |
Create thread for conversationview
Diffstat (limited to 'views')
-rw-r--r-- | views/conversation/main.qml | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/views/conversation/main.qml b/views/conversation/main.qml index 10c25706..06b59b42 100644 --- a/views/conversation/main.qml +++ b/views/conversation/main.qml | |||
@@ -56,13 +56,39 @@ ApplicationWindow { | |||
56 | name: "Folder 1", | 56 | name: "Folder 1", |
57 | mails: [{ | 57 | mails: [{ |
58 | resource: "resource1", | 58 | resource: "resource1", |
59 | subject: "subject", | 59 | messageId: "<msg1@test.com>", |
60 | date: "2017-07-24T15:46:29", | ||
61 | subject: "subject1", | ||
60 | body: "body", | 62 | body: "body", |
61 | to: ["to@example.org"], | 63 | to: ["to@example.org"], |
62 | cc: ["cc@example.org"], | 64 | cc: ["cc@example.org"], |
63 | bcc: ["bcc@example.org"], | 65 | bcc: ["bcc@example.org"], |
64 | draft: true | 66 | }, |
65 | }] | 67 | { |
68 | resource: "resource1", | ||
69 | inReplyTo: "<msg1@test.com>", | ||
70 | date: "2017-07-24T16:46:29", | ||
71 | subject: "subject2", | ||
72 | body: "body2", | ||
73 | to: ["to@example.org"], | ||
74 | }, | ||
75 | { | ||
76 | resource: "resource1", | ||
77 | inReplyTo: "<msg1@test.com>", | ||
78 | date: "2017-07-24T17:46:29", | ||
79 | subject: "subject3", | ||
80 | body: "body3\n\n\n\nfoo\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe End", | ||
81 | to: ["to@example.org"], | ||
82 | }, | ||
83 | { | ||
84 | resource: "resource1", | ||
85 | inReplyTo: "<msg1@test.com>", | ||
86 | date: "2017-07-24T18:46:29", | ||
87 | subject: "subject4", | ||
88 | body: "body4", | ||
89 | to: ["to@example.org"], | ||
90 | }, | ||
91 | ] | ||
66 | }], | 92 | }], |
67 | } | 93 | } |
68 | TestStore.setup(initialState) | 94 | TestStore.setup(initialState) |