Theo de Vries
Results
2
issues of
Theo de Vries
Implements feature request as described in issue #53
In the readme, you protect a route via Depends in the arguments list of the path operation function: ``` @app.get("/users/me", response_model=UserInfo, response_model_exclude_none=True, response_model_by_alias=False) async def read_users_me(current_user: UserInfo = Depends(msal_auth.scheme)) ->...