summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2021-04-16 18:24:40 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-10-22 09:55:21 +0000
commit7e12517395e203955ece7d1cf0231fe1b5780a84 (patch)
tree9070304f882314ab7c937de6ad798d564500c44e
parentc628411a715d6044ad18b3c68c1f59ce06827dbd (diff)
downloadnextcloud-server-7e12517395e203955ece7d1cf0231fe1b5780a84.tar.gz
nextcloud-server-7e12517395e203955ece7d1cf0231fe1b5780a84.zip
Fix "Federated" scope not shown when the lookup server is disabled
When the lookup server is disabled the address books can still be exchanged between trusted servers. Therefore the user should be able to set the "Federated" scope in that case. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--apps/settings/js/federationsettingsview.js8
-rw-r--r--apps/settings/js/settings/personalInfo.js2
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings/js/federationsettingsview.js b/apps/settings/js/federationsettingsview.js
index bb8011aca73..fd7f3789beb 100644
--- a/apps/settings/js/federationsettingsview.js
+++ b/apps/settings/js/federationsettingsview.js
@@ -15,7 +15,8 @@
* @constructs FederationScopeMenu
* @memberof OC.Settings
* @param {object} options
- * @param {bool} [options.lookupServerUploadEnabled=false] whether uploading to the lookup server is enabled
+ * @param {bool} [options.showPublishedScope=false] whether show the
+ * "v2-published" scope or not
*/
var FederationSettingsView = OC.Backbone.View.extend({
_inputFields: undefined,
@@ -31,7 +32,7 @@
} else {
this._config = new OC.Settings.UserSettings();
}
- this.showFederationScopes = !!options.showFederationScopes;
+ this.showPublishedScope = !!options.showPublishedScope;
this._inputFields = [
'displayname',
@@ -85,8 +86,7 @@
excludedScopes.push('v2-private');
}
- if (!self.showFederationScopes) {
- excludedScopes.push('v2-federated');
+ if (!self.showPublishedScope) {
excludedScopes.push('v2-published');
}
diff --git a/apps/settings/js/settings/personalInfo.js b/apps/settings/js/settings/personalInfo.js
index a6c57e55d7c..860eb9ed7b2 100644
--- a/apps/settings/js/settings/personalInfo.js
+++ b/apps/settings/js/settings/personalInfo.js
@@ -204,7 +204,7 @@ window.addEventListener('DOMContentLoaded', function () {
var federationSettingsView = new OC.Settings.FederationSettingsView({
el: settingsEl,
config: userSettings,
- showFederationScopes: !!settingsEl.data('lookup-server-upload-enabled'),
+ showPublishedScope: !!settingsEl.data('lookup-server-upload-enabled'),
});
userSettings.on("sync", function() {