@@ -30,10 +30,12 @@ const debug = debugFactory('Calendar')
3030 * - enabled
3131 * - order
3232 * - timezone
33- * - defaultAlarm
33+ * - defaultAlarmPartDay
34+ * - defaultAlarmFullDay
35+ * - transparency
3436 * - components
3537 *
36- * The first five allowing read-write access
38+ * The first seven allowing read-write access
3739 *
3840 * @augments DavCollection
3941 */
@@ -54,7 +56,8 @@ export class Calendar extends davCollectionPublishable(davCollectionShareable(Da
5456 super . _exposeProperty ( 'timezone' , NS . IETF_CALDAV , 'calendar-timezone' , true )
5557 super . _exposeProperty ( 'components' , NS . IETF_CALDAV , 'supported-calendar-component-set' )
5658 super . _exposeProperty ( 'transparency' , NS . IETF_CALDAV , 'schedule-calendar-transp' , true )
57- super . _exposeProperty ( 'defaultAlarm' , NS . NEXTCLOUD , 'default-alarm' , true )
59+ super . _exposeProperty ( 'defaultAlarmPartDay' , NS . NEXTCLOUD , 'default-alarm-part-day' , true )
60+ super . _exposeProperty ( 'defaultAlarmFullDay' , NS . NEXTCLOUD , 'default-alarm-full-day' , true )
5861 }
5962
6063 /**
@@ -283,7 +286,8 @@ export class Calendar extends davCollectionPublishable(davCollectionShareable(Da
283286 [ NS . IETF_CALDAV , 'schedule-calendar-transp' ] ,
284287 [ NS . IETF_CALDAV , 'schedule-default-calendar-URL' ] ,
285288 [ NS . OWNCLOUD , 'calendar-enabled' ] ,
286- [ NS . NEXTCLOUD , 'default-alarm' ] ,
289+ [ NS . NEXTCLOUD , 'default-alarm-part-day' ] ,
290+ [ NS . NEXTCLOUD , 'default-alarm-full-day' ] ,
287291 [ NS . NEXTCLOUD , 'owner-displayname' ] ,
288292 [ NS . NEXTCLOUD , 'trash-bin-retention-duration' ] ,
289293 [ NS . NEXTCLOUD , 'deleted-at' ] ,
0 commit comments