With LF version 4.2, we got the possibility to create Anonymous (Public) Shares. Many thanks for that. We now got the situation where a department creted an Anonymous Share. We disabled the checkbox "Publicly Discoverable". But now all local users (also the ones not from that department), see 2 new things: "Shares" on the top A list of all anonymous Share when they click on "Shares" Given that all other departments cannot and should not use Shares, they should not see the "Shares" option on the top. Can we suppress the "Shares" option for users that are not in a specific group? Thanks.
Currently it could be done only with a custom javascript placed in the "Admin > Configurations > Branding > StyleSheets and JavaScript Overrides" settings. i.e. in this example the Shares link will be showed only to local users group. Code: $(function() { if (!$('.group-local-users').length) { $('#menubar_shares').hide(); } });