Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Expose the new deleted-at property
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed May 31, 2021
commit 3e40615b7314b557ff1d8f2909ff47d6ddf30493
2 changes: 1 addition & 1 deletion dist/dist.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dist.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/models/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ export class Calendar extends davCollectionPublishable(davCollectionShareable(Da
[NS.IETF_CALDAV, 'schedule-calendar-transp'],
[NS.IETF_CALDAV, 'schedule-default-calendar-URL'],
[NS.OWNCLOUD, 'calendar-enabled'],
[NS.NEXTCLOUD, 'owner-displayname']
[NS.NEXTCLOUD, 'owner-displayname'],
[NS.NEXTCLOUD, 'deleted-at']
]);
}

Expand Down
1 change: 1 addition & 0 deletions src/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ export default class Parser {
this.registerParser('{http://owncloud.org/ns}enabled', Parser.bool);
this.registerParser('{http://owncloud.org/ns}read-only', Parser.bool);
this.registerParser('{http://nextcloud.com/ns}owner-displayname', Parser.text);
this.registerParser('{http://nextcloud.com/ns}deleted-at', Parser.decInt);
this.registerParser('{http://nextcloud.com/ns}has-photo', Parser.bool);

// Sabre/Dav specific
Expand Down