diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-04-26 15:52:06 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-04-26 19:47:55 +0200 |
commit | 71e05b1fd3a41644037c24925aca5c83de39cf14 (patch) | |
tree | b4724a22000bd58557b68f2c1c04c4ab32ddd1df /apps/federation/templates | |
parent | aa651fd629534e96432492c1a74e979b28222ce2 (diff) | |
download | nextcloud-server-71e05b1fd3a41644037c24925aca5c83de39cf14.tar.gz nextcloud-server-71e05b1fd3a41644037c24925aca5c83de39cf14.zip |
No longer add trusted servers on federated share creation
It was disabled by default for ages. And often resulted in unwanted
behavior. If admins want trusted servers they just have to do it
manually.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/federation/templates')
-rw-r--r-- | apps/federation/templates/settings-admin.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/federation/templates/settings-admin.php b/apps/federation/templates/settings-admin.php index 407a1fa9442..3fa7a02a02e 100644 --- a/apps/federation/templates/settings-admin.php +++ b/apps/federation/templates/settings-admin.php @@ -10,13 +10,6 @@ style('federation', 'settings-admin') <h2><?php p($l->t('Trusted servers')); ?></h2> <p class="settings-hint"><?php p($l->t('Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing. It is not necessary to add a server as trusted server in order to create a federated share.')); ?></p> - <p> - <input id="autoAddServers" type="checkbox" class="checkbox" <?php if ($_['autoAddServers']) { - p('checked'); -} ?> /> - <label for="autoAddServers"><?php p($l->t('Add server automatically once a federated share was created successfully')); ?></label> - </p> - <ul id="listOfTrustedServers"> <?php foreach ($_['trustedServers'] as $trustedServer) { ?> <li id="<?php p($trustedServer['id']); ?>"> |