Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-11-26 20:15:10 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-12-04 16:14:38 +0300
commita8f2e6914d15e778889c65a4bff6441ead04ee13 (patch)
treeaf6a9c80381a81e7cd941fc2ec8f093566ad3010 /apps/settings/src/views
parent293585ec12b5fcfd028d5e9835cfc144b98dcaf3 (diff)
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.vue15
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',