Hi All
Using the following Liquid code I can get the current user's Web Roles
<br />
This user has the following web roles:
<br /><br />
<ul>
{% if user %}
{% for role in user.roles %}
<li>{{ role }}</li>
{% endfor %}
{% endif %}
</ul>
Can I do something similar to get the Web Page Access Control Rules associated with the Web Role?
Thanks