From 7042bdf9aaa1828538214d9a6170e9cbf431a2c3 Mon Sep 17 00:00:00 2001 From: Thomas Anderson <127358482+zc-devs@users.noreply.github.com> Date: Fri, 12 Jun 2026 20:07:04 +0300 Subject: [PATCH 1/2] Disabled example event by default Signed-off-by: Thomas Anderson <127358482+zc-devs@users.noreply.github.com> --- apps/dav/lib/Service/ExampleEventService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/Service/ExampleEventService.php b/apps/dav/lib/Service/ExampleEventService.php index 3b2b07fe416c2..cad6d1e7c5a10 100644 --- a/apps/dav/lib/Service/ExampleEventService.php +++ b/apps/dav/lib/Service/ExampleEventService.php @@ -200,6 +200,6 @@ public function setCreateExampleEvent(bool $enable): void { } public function shouldCreateExampleEvent(): bool { - return $this->appConfig->getValueBool(Application::APP_ID, self::ENABLE_CONFIG_KEY, true); + return $this->appConfig->getValueBool(Application::APP_ID, self::ENABLE_CONFIG_KEY); } } From ae45545140fbb3f6a17bd104fabcc6fa5b4cebbd Mon Sep 17 00:00:00 2001 From: Thomas Anderson <127358482+zc-devs@users.noreply.github.com> Date: Fri, 12 Jun 2026 20:08:08 +0300 Subject: [PATCH 2/2] Disabled default contact by default Signed-off-by: Thomas Anderson <127358482+zc-devs@users.noreply.github.com> --- apps/dav/lib/Service/ExampleContactService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/Service/ExampleContactService.php b/apps/dav/lib/Service/ExampleContactService.php index 2ae003b9deddf..1f7bf100b6d79 100644 --- a/apps/dav/lib/Service/ExampleContactService.php +++ b/apps/dav/lib/Service/ExampleContactService.php @@ -33,7 +33,7 @@ public function __construct( } public function isDefaultContactEnabled(): bool { - return $this->appConfig->getAppValueBool('enableDefaultContact', true); + return $this->appConfig->getAppValueBool('enableDefaultContact'); } public function setDefaultContactEnabled(bool $value): void {