- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 04:33 AM
Here we have "Republish " button, it should be visible only ---who are having " kb_retire" role OR who are the author in KB article. My condition is not working.....
if you see below image i am not a Author of this article and i don't have kb_retire role, but it is visible me
it should be visible only=-------who are having " kb_retire" role OR who are the author in KB article.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 06:08 AM
can you try now
gs.getUser().getRoles().indexOf('kb_retire') >= 0 || current.author==gs.getUserID() || !(gs.getUser().getRoles().indexOf('admin') >= 0 )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 05:13 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 05:21 AM
Hi,
Admin will be able to see that. Try impersonating other user and check.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 05:23 AM
Can we restrict " republish" button to admin role users and it should be visible to only Kb_retire role users and how are Author of this KB record .

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 05:25 AM
put one more condition as
!gs.hasRole('admin')
Try
Thanks
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2018 05:36 AM