diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-02-08 06:54:07 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-03-02 01:59:15 +0000 |
commit | 4eff3594416481dbbf34057f53072d92119ababd (patch) | |
tree | d0a02d2052fe30cd7b011cf6ec94f8e10d3c158e /apps/dav/lib/CalDAV | |
parent | 9d088dfa5a49653e580575b98f1dd4d5f50b92a9 (diff) | |
download | nextcloud-server-4eff3594416481dbbf34057f53072d92119ababd.tar.gz nextcloud-server-4eff3594416481dbbf34057f53072d92119ababd.zip |
Calendar export and import
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/dav/lib/CalDAV')
-rw-r--r-- | apps/dav/lib/CalDAV/CalendarImpl.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/dav/lib/CalDAV/CalendarImpl.php b/apps/dav/lib/CalDAV/CalendarImpl.php index 1c36db68cca..87bed32428f 100644 --- a/apps/dav/lib/CalDAV/CalendarImpl.php +++ b/apps/dav/lib/CalDAV/CalendarImpl.php @@ -70,6 +70,13 @@ class CalendarImpl implements ICreateFromString { } /** + * {@inheritDoc} + */ + public function getUri() { + return $this->calendarInfo['uri']; + } + + /** * In comparison to getKey() this function returns a human readable (maybe translated) name * @return null|string * @since 13.0.0 |