aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/js/federationscopemenu.js
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-19 09:12:23 +0200
committerJoas Schilling <coding@schilljs.com>2020-06-19 09:12:23 +0200
commit1fb7cc5efbe34f3285024b8c3c881788e1e09e9e (patch)
tree1ab18031aa68ca4fab7c605c948c09d3298fae7e /apps/settings/js/federationscopemenu.js
parentdd0b9655b2dc72556f0a273f262357f5b058fe49 (diff)
downloadnextcloud-server-1fb7cc5efbe34f3285024b8c3c881788e1e09e9e.tar.gz
nextcloud-server-1fb7cc5efbe34f3285024b8c3c881788e1e09e9e.zip
Clarify that the email is always shared within the instance
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/js/federationscopemenu.js')
-rw-r--r--apps/settings/js/federationscopemenu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/js/federationscopemenu.js b/apps/settings/js/federationscopemenu.js
index 29303258c98..a2ca77bbf8c 100644
--- a/apps/settings/js/federationscopemenu.js
+++ b/apps/settings/js/federationscopemenu.js
@@ -27,8 +27,8 @@
this._scopes = [
{
name: 'private',
- displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Local') : t('settings', 'Private'),
- tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
+ displayName: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Local') : t('settings', 'Private'),
+ tooltip: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
iconClass: 'icon-password',
active: false
},