From fa1e4f779582d7c8cf57a813e8df5ee50b482180 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 14 Jul 2026 21:39:08 -0400 Subject: [PATCH] docs(config): clarify knowledgebase help configuration Signed-off-by: Josh --- config/config.sample.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 55ceb784df971..702e83a727623 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -281,15 +281,23 @@ 'default_timezone' => 'Europe/Berlin', /** - * ``true`` enables the Help menu item in the user menu (top right of the - * Nextcloud Web interface). - * ``false`` removes the Help item. + * Controls the visibility of the "Help & privacy" navigation entry for + * signed-in users. Set to ``false`` to hide it. + * + * Defaults to ``true`` */ 'knowledgebaseenabled' => true, /** - * ``true`` embeds the documentation in an iframe inside Nextcloud. - * ``false`` only shows buttons to the online documentation. + * Determines how documentation is displayed on the "Help & privacy" page. + * + * - ``true``: Embeds bundled documentation within an iframe. + * - ``false``: Displays links to external documentation and other help and + * privacy resources. + * + * Custom themes may override the external documentation URLs. + * + * Defaults to ``false`` */ 'knowledgebase.embedded' => false,