juliushaertl / apporder

Nextcloud app to enable sorting inside the app menu
GNU Affero General Public License v3.0
45 stars 9 forks source link

20.0.0beta3 App Order can no longer change the default app away from Dashboard #92

Closed sunjam closed 3 years ago

sunjam commented 4 years ago

AppOrder in 20.0.0beta3 no longer allows the user to decide which app they see upon login. Normally it would be the first app (Files on in my instance). Now, the Dashboard will open regardless.

juliushaertl commented 4 years ago

What value have you set in config.php for defaultapp?

sunjam commented 4 years ago

What value have you set in config.php for defaultapp?

Actually, that value is not listed in my config.php, but perhaps this is related:

 'app_install_overwrite' => 
  array (
    0 => 'globalsiteselector',
    1 => 'nextcloudpi',
    2 => 'contacts',
    3 => 'previewgenerator',
    4 => 'analytics',
    5 => 'workflow_script',
    6 => 'files_automatedtagging',
    7 => 'dashboardcharts',
    8 => 'breezedark',
  ),
juliushaertl commented 4 years ago

https://github.com/juliushaertl/apporder#use-first-app-as-default-app should help

sunjam commented 4 years ago

https://github.com/juliushaertl/apporder#use-first-app-as-default-app should help

That is exactly what I've done within the app. image Organized Files to be number one, but Dashboard is still what is shown by default. Guess I need to add that config.php value as well. image

juliushaertl commented 4 years ago

Yes as mentioned in the readme you need to specify the default app to be either files for hardcoding the first app or apporder to pick up the first one in the apporder sorting to your config.php :+1:

'defaultapp' => 'apporder',