Permissions are inherited from the groups the user belongs to. The table shows the effective permissions the user has on the platform.
Permission | Value | Inherited from groups |
---|---|---|
{{ permissions_audit['details'][perm].name }} | 0x{{ perm | int(perm,16) }} | {% for group_id in permissions_audit['details'][perm].inherited_from %}{{ permissions_audit['details'][perm].inherited_from[group_id].group_name }}{% endfor %} |
Click on a case to unveil access control path
Case name | Access |
---|---|
{% if access_audit[case_id].user_effective_access|length == 0 or 'deny_all' in access_audit[case_id].user_effective_access[0].name %} {% elif 'read_only' in access_audit[case_id].user_effective_access[0].name %} {% else %} {% endif %} {{ access_audit[case_id].case_info.case_name }} | {% if access_audit[case_id].user_effective_access|length == 0 %}
No access
{% else %}
{% for uac in access_audit[case_id].user_effective_access %}
{{ uac.name }}
{% endfor %}
{% endif %}
|