How to create a read ACL only for Timeworked table for a particular group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 07:51 AM
Hi All,
How to create a read ACL only for Timeworked table for a particular group.
We create a report (BAR graph) on timeoworked table but when the ABC group member is clicking on the bar graph the timeworked list view is not visible to them, only admin is able to see the data.
So i want to create a ACL for this to show a particular group the timeworked list view when they click on the bar graph.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 08:05 AM
Hello @Aryan
Elevate your role to Security admin group and go to ACL module.
You have to Table.none ACL and Table.* ACL.
In the ACL script, try below script.
var user = gs.getUser();
answer = user.isMemberOf('Group name');
Please mark the answer as helpful and correct if helped.
Kind Regards,
Ravi Chandra

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 08:06 AM - edited 11-19-2024 08:08 AM
Create a read ACL that check to see if the user is a member of ABC Group.
var currentUser = gs.getUser();
if (currentUser.isMemberOf('abc group')){
answser = true;
}
else {
answer = false;
}