- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 07:23 AM
Hi
How can we encrypt attachment so it will not be visible to any user but the members of the groups.
Thanks in Advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 07:27 AM
hello @Afrin12 ,
You can create a read Acl on sys_attachment table where in the advanced condition you can write a script saying
if(current.table_name=="your_table_name")
{
if(gs.getUser().isMemberOf('your_group name'))
{
answer =true;
}
else
{
answer=false
}
}
Hope this helps
Mark my answer correct if this helps ypu
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 07:27 AM
hello @Afrin12 ,
You can create a read Acl on sys_attachment table where in the advanced condition you can write a script saying
if(current.table_name=="your_table_name")
{
if(gs.getUser().isMemberOf('your_group name'))
{
answer =true;
}
else
{
answer=false
}
}
Hope this helps
Mark my answer correct if this helps ypu
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 09:14 AM
Thank you Mohit For your quick reply.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 07:10 AM
Hi Mohith,
The requirement is to restrict specific set of users from downloading attachments in KB articles. So, I wrote a read ACL on sys_attachment table with sys_id of the attachments in the kb articles but it is not working.
Please let me know if I am missing out something.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 07:18 AM
I have tried this but not getting exact result. please let me know how to achieve this.
please help me here.
Thanks