aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Calendar
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2019-08-01 15:26:11 +0200
committerGeorg Ehrke <developer@georgehrke.com>2019-08-01 15:26:11 +0200
commitb246e58a1ed1e37401503ac0212d6b61bfe83cb7 (patch)
tree18be435c68ab8423884046a9f2dfe60df52249aa /lib/public/Calendar
parent475984ef1996dca4e6da7b58ae498e54ef8bd40b (diff)
downloadnextcloud-server-b246e58a1ed1e37401503ac0212d6b61bfe83cb7.tar.gz
nextcloud-server-b246e58a1ed1e37401503ac0212d6b61bfe83cb7.zip
Provide standard metadata keys for contact person of a resource
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'lib/public/Calendar')
-rw-r--r--lib/public/Calendar/Resource/IResourceMetadata.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/public/Calendar/Resource/IResourceMetadata.php b/lib/public/Calendar/Resource/IResourceMetadata.php
index a48bcfb6827..2cf6c24f9b0 100644
--- a/lib/public/Calendar/Resource/IResourceMetadata.php
+++ b/lib/public/Calendar/Resource/IResourceMetadata.php
@@ -100,4 +100,19 @@ interface IResourceMetadata {
* @since 17.0.0
*/
public const VEHICLE_SEATING_CAPACITY = '{http://nextcloud.com/ns}resource-vehicle-seating-capacity';
+
+ /**
+ * Contact information about the person who is responsible to administer / maintain this resource
+ * This key stores a textual description of name and possible ways to contact the person
+ *
+ * @since 17.0.0
+ */
+ public const CONTACT_PERSON = '{http://nextcloud.com/ns}resource-contact-person';
+
+ /**
+ * Link to the vcard of the contact person
+ *
+ * @since 17.0.0
+ */
+ public const CONTACT_PERSON_VCARD = '{http://nextcloud.com/ns}resource-contact-person-vcard';
}