General Actions:
| Question | How can I make content appear only for a specific group? |
| Answer |
In syntax 2.0:
{{velocity}}
#if($xwiki.getUser().isUserInGroup('XWiki.PrivateGroup'))
Put the private content here.
#end
{{/velocity}}#if($xwiki.getUser().isUserInGroup('XWiki.PrivateGroup'))
Put the private content here.
#end |