diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-04 15:37:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 15:37:56 +0200 |
commit | 23df9424545880d6259bcd730d62835a43e263d0 (patch) | |
tree | a5f43462d87058bfd8670d7182845767789f4ead /lib/public | |
parent | b57115df3ff0c7ffc23ed5844225df2d21e4ee5b (diff) | |
parent | d084e7656be259f45207ea199e362d857f743510 (diff) | |
download | nextcloud-server-23df9424545880d6259bcd730d62835a43e263d0.tar.gz nextcloud-server-23df9424545880d6259bcd730d62835a43e263d0.zip |
Merge pull request #34378 from nextcloud/add-isDeleted-to-icalendar
Add isDeleted to OCP\Calendar\ICalendar
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Calendar/ICalendar.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/Calendar/ICalendar.php b/lib/public/Calendar/ICalendar.php index f1f2d5eb6f1..e1644ca82aa 100644 --- a/lib/public/Calendar/ICalendar.php +++ b/lib/public/Calendar/ICalendar.php @@ -75,4 +75,10 @@ interface ICalendar { * @since 13.0.0 */ public function getPermissions(): int; + + /** + * Whether the calendar is deleted + * @since 26.0.0 + */ + public function isDeleted(): bool; } |