Show incident rows only to the assignment group
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2017 07:04 AM
Hi,
Is there a way to define that only the assignment group could see her incident rows?
I tried to write an ACL:
Operation: read
script:
if(gs.getUser().isMemberOf(current.assignment_group))
{
answer=true;
}
else
{
answer=false;
}
however, the group members can't see any of the records (i attached a screenshot)
The member that i impersonated should have seen the first 3 rows
Also - I want the ones that are not in the assignment group to not see the records at all - instead of these empty records
Thank you in advance
Labels:
- Labels:
-
Scripting and Coding
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 05:05 AM