diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2021-01-08 09:49:12 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-01-08 09:10:24 +0000 |
commit | a4e6c44581c8dce31c64203f2da4a82708244c56 (patch) | |
tree | 378c61cc4121ae9fd1aea8f68f6bcd12f8d24437 /config | |
parent | 0e20ce014aef22d37d21fc6cd224941448f1a82d (diff) | |
download | nextcloud-server-a4e6c44581c8dce31c64203f2da4a82708244c56.tar.gz nextcloud-server-a4e6c44581c8dce31c64203f2da4a82708244c56.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 1aba6f6381f..ecc0fe3d483 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -210,11 +210,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 |