diff options
author | Anna Larch <anna@nextcloud.com> | 2021-09-27 14:58:16 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-14 08:22:24 +0200 |
commit | a58d1e6b06d553927ff6b80822074e640ee66a9c (patch) | |
tree | 27472486e3dd55dca6311e7c9ad131d050156b6d /lib/public/AppFramework/Bootstrap | |
parent | b7ee885f930c32ab5412208a0e6cc13650735663 (diff) | |
download | nextcloud-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.php | 9 |
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; } |