diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2021-01-08 09:49:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 09:49:12 +0100 |
commit | 543df3017421d7495c2ba57dd3beb2bd2c33e7c9 (patch) | |
tree | d9f6be2151f59b9444b1f24118d5d80c5ef5e24e /config | |
parent | d13f2d984f8ed5ef5bc445ad093cd9eb4def8a04 (diff) | |
download | nextcloud-server-543df3017421d7495c2ba57dd3beb2bd2c33e7c9.tar.gz nextcloud-server-543df3017421d7495c2ba57dd3beb2bd2c33e7c9.zip |
Change defaultapp to dashboard
Result of discussion at https://help.nextcloud.com/t/enable-dashboard-on-per-user-basis/94872
Code reference:
https://github.com/nextcloud/server/blob/db86bea18ce41ad73e9c1a06f2b2d89d8d4f2ef8/lib/private/legacy/OC_Util.php#L1106
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 507cc489dc4..1560fe8ac39 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -220,11 +220,11 @@ $CONFIG = [ * URL after clicking them in the Apps menu, such as documents, calendar, and * gallery. You can use a comma-separated list of app names, so if the first * app is not enabled for a user then Nextcloud will try the second one, and so - * on. If no enabled apps are found it defaults to the Files app. + * on. If no enabled apps are found it defaults to the dashboard app. * - * Defaults to ``files`` + * Defaults to ``dashboard,files`` */ -'defaultapp' => 'files', +'defaultapp' => 'dashboard,files', /** * ``true`` enables the Help menu item in the user menu (top right of the |