Skip to content

Commit cf89585

Browse files
committed
Model v99 - Introduction of Ghost Bubbles and default calendars
1 parent 320eb11 commit cf89585

File tree

12 files changed

+519
-341
lines changed

12 files changed

+519
-341
lines changed

src/calendar-app/calendar/export/CalendarParser.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,7 @@ function getContents(eventObjects: ICalObject[], zone: string) {
617617
hashedUid: null,
618618
invitedConfidentially: null,
619619
alarmInfos: [],
620+
sender: null,
620621
}) as Require<"uid", CalendarEvent>
621622

622623
let alarms: AlarmInfoTemplate[] = []

src/calendar-app/calendar/gui/eventeditor-model/CalendarEventModel.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ export function assembleCalendarEventEditResult(models: CalendarEventEditModels)
500500
// fields related to the event instance's identity are excluded.
501501
// reminders. will be set up separately.
502502
alarmInfos: [],
503+
sender: null,
503504
},
504505
newAlarms: alarmResult.alarms,
505506
sendModels: whoResult,
@@ -572,6 +573,7 @@ function makeEmptyCalendarEvent(): StrippedEntity<CalendarEvent> {
572573
attendees: [],
573574
organizer: null,
574575
sequence: "",
576+
sender: null,
575577
}
576578
}
577579

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const modelInfo = {
2-
version: 98,
2+
version: 99,
33
}
44

55
export default modelInfo

0 commit comments

Comments
 (0)