]> source.dussan.org Git - nextcloud-server.git/commitdiff
Provide standard metadata keys for location of room
authorGeorg Ehrke <developer@georgehrke.com>
Thu, 1 Aug 2019 13:25:43 +0000 (15:25 +0200)
committerGeorg Ehrke <developer@georgehrke.com>
Thu, 1 Aug 2019 13:25:43 +0000 (15:25 +0200)
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
lib/public/Calendar/Room/IRoomMetadata.php

index 3d501d4d12f5bc399f3c255c59dc74295c8f6a6a..a6c0fa83865d72e6ecc388fa9eff1acc51968b83 100644 (file)
@@ -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';
 }