diff options
author | Georg Ehrke <developer@georgehrke.com> | 2019-08-01 15:25:43 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2019-08-01 15:25:43 +0200 |
commit | 475984ef1996dca4e6da7b58ae498e54ef8bd40b (patch) | |
tree | 5772047dd44daf5a35d0029ff4a868a3dd119b15 /lib/public | |
parent | 4b4292996ff68f6fa1a18443bf01b7aed300c5f8 (diff) | |
download | nextcloud-server-475984ef1996dca4e6da7b58ae498e54ef8bd40b.tar.gz nextcloud-server-475984ef1996dca4e6da7b58ae498e54ef8bd40b.zip |
Provide standard metadata keys for location of room
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Calendar/Room/IRoomMetadata.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/public/Calendar/Room/IRoomMetadata.php b/lib/public/Calendar/Room/IRoomMetadata.php index 3d501d4d12f..a6c0fa83865 100644 --- a/lib/public/Calendar/Room/IRoomMetadata.php +++ b/lib/public/Calendar/Room/IRoomMetadata.php @@ -54,4 +54,25 @@ interface IRoomMetadata { * @since 17.0.0 */ public const CAPACITY = '{http://nextcloud.com/ns}room-seating-capacity'; + + /** + * The physical address of the building this room is located in + * + * @since 17.0.0 + */ + public const BUILDING_ADDRESS = '{http://nextcloud.com/ns}room-building-address'; + + /** + * The story of the building this rooms is located in + * + * @since 17.0.0 + */ + public const BUILDING_STORY = '{http://nextcloud.com/ns}room-building-story'; + + /** + * The room-number + * + * @since 17.0.0 + */ + public const BUILDING_ROOM_NUMBER = '{http://nextcloud.com/ns}room-building-room-number'; } |