HowCanIMakeContentAppearOnlyForASpecificUser
| Question | How can I make content appear only for a specific user? |
| Answer |
In syntax 2.0:
{{velocity}}
#if($context.user == 'XWiki.Admin')
Put the private content here.
#end
{{/velocity}}#if($context.user == 'XWiki.Admin') Put the private content here. #end |