Niek Bruins
Results
1
comments of
Niek Bruins
I had the same issue and i found this workaround: ``` def get_current_user( current_user: AccessUser = Depends(auth.claim(AccessUser)), ): return current_user def get_read_scopes( scopes=Depends(auth.scope(["admin:read"])), ): return scopes ``` And then in...