diff options
author | Robin Appelman <robin@icewind.nl> | 2021-04-23 20:20:56 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2021-05-12 16:11:31 +0200 |
commit | 0e6321957df6635d43ad07d7add23b1cea581fc0 (patch) | |
tree | 0e0e448f515cd778b6f08e7140abf742a3e11e3a /apps/settings/js/admin.js | |
parent | b1dca57a1ce59bacc4089761275e4366e9760313 (diff) | |
download | nextcloud-server-0e6321957df6635d43ad07d7add23b1cea581fc0.tar.gz nextcloud-server-0e6321957df6635d43ad07d7add23b1cea581fc0.zip |
allow excluding groups from creating link shares
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/settings/js/admin.js')
-rw-r--r-- | apps/settings/js/admin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/js/admin.js b/apps/settings/js/admin.js index 271d13b43d0..f749c9e132c 100644 --- a/apps/settings/js/admin.js +++ b/apps/settings/js/admin.js @@ -1,5 +1,5 @@ window.addEventListener('DOMContentLoaded', function(){ - $('#excludedGroups').each(function (index, element) { + $('#excludedGroups,#linksExcludedGroups').each(function (index, element) { OC.Settings.setupGroupsSelect($(element)); $(element).change(function(ev) { var groups = ev.val || []; |