{% extends "base.html" %} {% block title %}Allowed Resources{% endblock %} {% block extra_head %} {% include "_permission_ui_styles.html" %} {% include "_debug_common_functions.html" %} {% endblock %} {% block content %}

Allowed resources

{% set current_tab = "allowed" %} {% include "_permissions_debug_tabs.html" %}

Use this tool to check which resources the current actor is allowed to access for a given permission action. It queries the /-/allowed.json API endpoint.

{% if request.actor %}

Current actor: {{ request.actor.get("id", "anonymous") }}

{% else %}

Current actor: anonymous (not logged in)

{% endif %}
Only certain actions are supported by this endpoint
Filter results to a specific parent resource
Filter results to a specific child resource (requires parent to be set)
Number of results per page (max 200)
{% endblock %}