diff options
author | Minijackson <minijackson@riseup.net> | 2018-04-11 17:03:55 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2018-04-11 17:03:55 +0200 |
commit | 79a78d81412c1c99ecfa06a85925946609327835 (patch) | |
tree | 710ea0706f46eee701eb531886e1cc9b4090c661 /views/calendar/main.qml | |
parent | 004a1a2e91c72f9b1b7ca964fe20cd6a1a6e68a6 (diff) | |
download | kube-79a78d81412c1c99ecfa06a85925946609327835.tar.gz kube-79a78d81412c1c99ecfa06a85925946609327835.zip |
Update to Event preprocessor change + set the resources correctlycalendar-feature/teststore
Diffstat (limited to 'views/calendar/main.qml')
-rw-r--r-- | views/calendar/main.qml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/views/calendar/main.qml b/views/calendar/main.qml index d2bdc1c3..672e3e21 100644 --- a/views/calendar/main.qml +++ b/views/calendar/main.qml | |||
@@ -47,19 +47,22 @@ ApplicationWindow { | |||
47 | }], | 47 | }], |
48 | calendars: [{ | 48 | calendars: [{ |
49 | id: "calendar1", | 49 | id: "calendar1", |
50 | resource: "caldavresource", | ||
50 | name: "Test Calendar", | 51 | name: "Test Calendar", |
51 | events: [ | 52 | events: [ |
52 | { | 53 | { |
53 | "summary": "Test Event1", | 54 | resource: "caldavresource", |
54 | "description": "This is test event #1", | 55 | summary: "Test Event1", |
55 | "starts": "2018-04-10T14:03:00", | 56 | description: "This is test event #1", |
56 | "ends": "2018-04-10T17:03:00", | 57 | starts: "2018-04-10T14:03:00", |
58 | ends: "2018-04-10T17:03:00", | ||
57 | }, | 59 | }, |
58 | { | 60 | { |
59 | "summary": "Test Event1", | 61 | resource: "caldavresource", |
60 | "description": "This is test event #1", | 62 | summary: "Test Event2", |
61 | "starts": "2018-04-11T09:03:00", | 63 | description: "This is test event #2", |
62 | "ends": "2018-04-11T14:03:00", | 64 | starts: "2018-04-11T09:03:00", |
65 | ends: "2018-04-11T14:03:00", | ||
63 | }, | 66 | }, |
64 | ], | 67 | ], |
65 | }], | 68 | }], |