diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-09 21:46:42 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-10 17:19:55 +0100 |
commit | b71268e38b96e69057824e0eeb8f937ad015a927 (patch) | |
tree | f17a6d050e203f775bb2239a02a20be2b9f75574 /apps/settings/js/admin.js | |
parent | c7be18c0d6cf6a5af2251abdfa18cdccd11da33b (diff) | |
download | nextcloud-server-b71268e38b96e69057824e0eeb8f937ad015a927.tar.gz nextcloud-server-b71268e38b96e69057824e0eeb8f937ad015a927.zip |
Add a config setting to restrict autocompletion to phonebook matches
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/js/admin.js')
-rw-r--r-- | apps/settings/js/admin.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings/js/admin.js b/apps/settings/js/admin.js index cffaefa3821..72b167d7e0d 100644 --- a/apps/settings/js/admin.js +++ b/apps/settings/js/admin.js @@ -144,6 +144,7 @@ window.addEventListener('DOMContentLoaded', function(){ $('#shareapi_allow_share_dialog_user_enumeration').on('change', function() { $('#shareapi_restrict_user_enumeration_to_group_setting').toggleClass('hidden', !this.checked); + $('#shareapi_restrict_user_enumeration_to_phone_setting').toggleClass('hidden', !this.checked); }) $('#allowLinks').change(function() { |