We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92cff04 commit be57d3eCopy full SHA for be57d3e
databroker/server.py
@@ -34,6 +34,7 @@ async def get_documents(
34
principal=Depends(get_current_principal),
35
root_tree=Depends(get_root_tree),
36
session_state: dict = Depends(get_session_state),
37
+ authn_access_tags: Optional[Set[str]] = Depends(get_current_access_tags),
38
authn_scopes: Scopes = Depends(get_current_scopes),
39
fill: Optional[bool] = False,
40
_=Security(check_scopes, scopes=["read:data", "read:metadata"])
@@ -45,6 +46,7 @@ async def get_documents(
45
46
path,
47
["read:data", "read:metadata"],
48
principal,
49
+ authn_access_tags,
50
authn_scopes,
51
root_tree,
52
session_state,
0 commit comments