diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-11-26 18:15:10 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-12-04 14:14:38 +0100 |
commit | a8f2e6914d15e778889c65a4bff6441ead04ee13 (patch) | |
tree | af6a9c80381a81e7cd941fc2ec8f093566ad3010 /apps/settings/src/views | |
parent | 293585ec12b5fcfd028d5e9835cfc144b98dcaf3 (diff) | |
download | nextcloud-server-a8f2e6914d15e778889c65a4bff6441ead04ee13.tar.gz nextcloud-server-a8f2e6914d15e778889c65a4bff6441ead04ee13.zip |
Add checkbox to install recommended apps during setup
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src/views')
-rw-r--r-- | apps/settings/src/views/Apps.vue | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/apps/settings/src/views/Apps.vue b/apps/settings/src/views/Apps.vue index 2e0649f7f56..a2c4cae825d 100644 --- a/apps/settings/src/views/Apps.vue +++ b/apps/settings/src/views/Apps.vue @@ -31,7 +31,10 @@ </ul> </AppNavigation> <AppContent class="app-settings-content" :class="{ 'icon-loading': loadingList }"> - <AppList :category="category" :app="currentApp" :search="searchQuery" /> + <AppList v-if="!loadingList" + :category="category" + :app="currentApp" + :search="searchQuery" /> </AppContent> <AppSidebar v-if="id && currentApp" @close="hideAppDetails"> <AppDetails :category="category" :app="currentApp" /> @@ -134,12 +137,20 @@ export default { text: t('settings', 'Your apps') }, { + id: 'app-category-recommended', + classes: [], + router: { name: 'apps-category', params: { category: 'recommended' } }, + icon: 'icon-category-installed', + text: t('settings', 'Recommended apps') + }, + { id: 'app-category-enabled', classes: [], icon: 'icon-category-enabled', router: { name: 'apps-category', params: { category: 'enabled' } }, text: t('settings', 'Active apps') - }, { + }, + { id: 'app-category-disabled', classes: [], icon: 'icon-category-disabled', |