aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework/Bootstrap
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2021-09-27 14:58:16 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-10-14 08:22:24 +0200
commita58d1e6b06d553927ff6b80822074e640ee66a9c (patch)
tree27472486e3dd55dca6311e7c9ad131d050156b6d /lib/public/AppFramework/Bootstrap
parentb7ee885f930c32ab5412208a0e6cc13650735663 (diff)
downloadnextcloud-server-a58d1e6b06d553927ff6b80822074e640ee66a9c.tar.gz
nextcloud-server-a58d1e6b06d553927ff6b80822074e640ee66a9c.zip
Add Public Calendar Provider
Signed-off-by: Anna Larch <anna@nextcloud.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/AppFramework/Bootstrap')
-rw-r--r--lib/public/AppFramework/Bootstrap/IRegistrationContext.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
index 589140d3edd..d396c619923 100644
--- a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
+++ b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
@@ -228,4 +228,13 @@ interface IRegistrationContext {
* @since 22.0.0
*/
public function registerTwoFactorProvider(string $twoFactorProviderClass): void;
+
+ /**
+ * Register a calendar provider
+ *
+ * @param string $class
+ * @psalm-param class-string<IProvider> $class
+ * @since 23.0.0
+ */
+ public function registerCalendarProvider(string $class): void;
}