diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-10 17:23:16 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-01-10 17:23:16 +0100 |
commit | b4d5cc60d8ea2ff400c274c6ece1139bc00686fc (patch) | |
tree | 1001917c68cc05d0aa7ee9a863bf2b0c5ea1769f /views/conversation/main.qml | |
parent | 107e60448ec89883e60905f5a1cef507c0bf9fc2 (diff) | |
download | kube-b4d5cc60d8ea2ff400c274c6ece1139bc00686fc.tar.gz kube-b4d5cc60d8ea2ff400c274c6ece1139bc00686fc.zip |
Inherit folder id (we can't hardcode it)
Diffstat (limited to 'views/conversation/main.qml')
-rw-r--r-- | views/conversation/main.qml | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/views/conversation/main.qml b/views/conversation/main.qml index 15360d22..10c25706 100644 --- a/views/conversation/main.qml +++ b/views/conversation/main.qml | |||
@@ -53,18 +53,17 @@ ApplicationWindow { | |||
53 | folders: [{ | 53 | folders: [{ |
54 | id: "folder1", | 54 | id: "folder1", |
55 | resource: "resource1", | 55 | resource: "resource1", |
56 | name: "Folder 1" | 56 | name: "Folder 1", |
57 | mails: [{ | ||
58 | resource: "resource1", | ||
59 | subject: "subject", | ||
60 | body: "body", | ||
61 | to: ["to@example.org"], | ||
62 | cc: ["cc@example.org"], | ||
63 | bcc: ["bcc@example.org"], | ||
64 | draft: true | ||
65 | }] | ||
57 | }], | 66 | }], |
58 | mails: [{ | ||
59 | resource: "resource1", | ||
60 | folder: "folder1", | ||
61 | subject: "subject", | ||
62 | body: "body", | ||
63 | to: ["to@example.org"], | ||
64 | cc: ["cc@example.org"], | ||
65 | bcc: ["bcc@example.org"], | ||
66 | draft: true | ||
67 | }] | ||
68 | } | 67 | } |
69 | TestStore.setup(initialState) | 68 | TestStore.setup(initialState) |
70 | } | 69 | } |