diff options
author | Georg Ehrke <developer@georgehrke.com> | 2019-07-22 11:36:26 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2019-08-01 10:08:52 +0200 |
commit | 2dc79e583902bd591f9c56943f9296654b0781e5 (patch) | |
tree | 9bfa8d5d3f7a96a53693b808e4cc993b966b7720 /lib/public/Calendar/Room/IRoom.php | |
parent | a1afdac31afd1faa51da5015af158db0e3618883 (diff) | |
download | nextcloud-server-2dc79e583902bd591f9c56943f9296654b0781e5.tar.gz nextcloud-server-2dc79e583902bd591f9c56943f9296654b0781e5.zip |
Add \OCP\Calendar\IMetadataProvider interface and provider for common metadata keys
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'lib/public/Calendar/Room/IRoom.php')
-rw-r--r-- | lib/public/Calendar/Room/IRoom.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/Calendar/Room/IRoom.php b/lib/public/Calendar/Room/IRoom.php index d860bb6fc57..1475f0e7167 100644 --- a/lib/public/Calendar/Room/IRoom.php +++ b/lib/public/Calendar/Room/IRoom.php @@ -32,7 +32,7 @@ namespace OCP\Calendar\Room; interface IRoom { /** - * get the room id + * Get a unique ID for the room * * This id has to be unique within the backend * @@ -42,7 +42,7 @@ interface IRoom { public function getId():string; /** - * get the display name for a room + * Get the display name for the room * * @return string * @since 14.0.0 @@ -61,9 +61,9 @@ interface IRoom { public function getGroupRestrictions():array; /** - * get email-address for room + * Get the email-address for the room * - * The email address has to be globally unique + * The email-address has to be globally unique * * @return string * @since 14.0.0 |