mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Clearer docs for actor_matches_allow
This commit is contained in:
parent
eefeafaa27
commit
fa87d16612
2 changed files with 3 additions and 2 deletions
|
|
@ -867,7 +867,8 @@ async def async_call_with_supported_arguments(fn, **kwargs):
|
||||||
|
|
||||||
|
|
||||||
def actor_matches_allow(actor, allow):
|
def actor_matches_allow(actor, allow):
|
||||||
actor = actor or {}
|
if actor is None:
|
||||||
|
actor = {"anonymous": True}
|
||||||
if allow is None:
|
if allow is None:
|
||||||
return True
|
return True
|
||||||
for key, values in allow.items():
|
for key, values in allow.items():
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@ To limit this ability for just one specific database, use this:
|
||||||
actor_matches_allow()
|
actor_matches_allow()
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
Plugins that wish to implement the same permissions scheme as canned queries can take advantage of the ``datasette.utils.actor_matches_allow(actor, allow)`` function:
|
Plugins that wish to implement this same ``"allow"`` block permissions scheme can take advantage of the ``datasette.utils.actor_matches_allow(actor, allow)`` function:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue