summaryrefslogtreecommitdiffstats
path: root/settings/src
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-05-10 14:50:24 +0200
committerMorris Jobke <hey@morrisjobke.de>2019-05-13 13:36:02 +0200
commit361836675cc9d37a5cf74c5f99c3739c5eb271c9 (patch)
tree37fa956def0069f7ca4099352e79eb8b40a64617 /settings/src
parent74ad4cce838172a51d441ffd53b7cae936f9dbb3 (diff)
downloadnextcloud-server-361836675cc9d37a5cf74c5f99c3739c5eb271c9.tar.gz
nextcloud-server-361836675cc9d37a5cf74c5f99c3739c5eb271c9.zip
Show supported apps in app management
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'settings/src')
-rw-r--r--settings/src/components/appDetails.vue5
-rw-r--r--settings/src/components/appList/appItem.vue3
2 files changed, 7 insertions, 1 deletions
diff --git a/settings/src/components/appDetails.vue b/settings/src/components/appDetails.vue
index ade0bf35cb1..b4420e322e4 100644
--- a/settings/src/components/appDetails.vue
+++ b/settings/src/components/appDetails.vue
@@ -31,7 +31,10 @@
</svg>
{{ app.name }}</h2>
<img v-if="app.screenshot" :src="app.screenshot" width="100%" />
- <div class="app-level" v-if="app.level === 200 || hasRating">
+ <div class="app-level" v-if="app.level === 300 || app.level === 200 || hasRating">
+ <span class="supported icon-checkmark-color" v-if="app.level === 300"
+ v-tooltip.auto="t('settings', 'This app is supported via your current Nextcloud subscription.')">
+ {{ t('settings', 'Supported') }}</span>
<span class="official icon-checkmark" v-if="app.level === 200"
v-tooltip.auto="t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')">
{{ t('settings', 'Official') }}</span>
diff --git a/settings/src/components/appList/appItem.vue b/settings/src/components/appList/appItem.vue
index 6fdf04b1ccf..5f37802df51 100644
--- a/settings/src/components/appList/appItem.vue
+++ b/settings/src/components/appList/appItem.vue
@@ -42,6 +42,9 @@
</div>
<div class="app-level">
+ <span class="supported icon-checkmark-color" v-if="app.level === 300"
+ v-tooltip.auto="t('settings', 'This app is supported via your current Nextcloud subscription.')">
+ {{ t('settings', 'Supported') }}</span>
<span class="official icon-checkmark" v-if="app.level === 200"
v-tooltip.auto="t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')">
{{ t('settings', 'Official') }}</span>