I want to disallow users from attaching or downloading files.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2024 12:19 AM
Hi, all
I have a group called "test" with an admin role.
I want to make sure that users in the "test" group cannot attach or download files.
How can I implement this?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2024 12:30 AM
Hi @RyoyaFukuda ,
You can create two ACLs for this Create & Read. In that u can write below script
if(gs.getUser().isMemberOf('your_group name'))
{
answer =true;
}
else
{
answer=false
}
This will be applicable for all the attachments.
Thanks,
Danish