mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed actor_matches_allow bug, closes #836
This commit is contained in:
parent
29c5ff493a
commit
f39f111331
2 changed files with 3 additions and 1 deletions
|
|
@ -884,7 +884,7 @@ def actor_matches_allow(actor, allow):
|
|||
values = [values]
|
||||
actor_values = actor.get(key)
|
||||
if actor_values is None:
|
||||
return False
|
||||
continue
|
||||
if not isinstance(actor_values, list):
|
||||
actor_values = [actor_values]
|
||||
actor_values = set(actor_values)
|
||||
|
|
|
|||
|
|
@ -497,6 +497,8 @@ def test_multi_params(data, should_raise):
|
|||
({"id": "garry", "roles": ["staff", "dev"]}, {"roles": ["dev", "otter"]}, True),
|
||||
({"id": "garry", "roles": []}, {"roles": ["staff"]}, False),
|
||||
({"id": "garry"}, {"roles": ["staff"]}, False),
|
||||
# Any single matching key works:
|
||||
({"id": "root"}, {"bot_id": "my-bot", "id": ["root"]}, True),
|
||||
],
|
||||
)
|
||||
def test_actor_matches_allow(actor, allow, expected):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue