Get current user.
(current_user: CurrentUser)
| 13 | |
| 14 | @router.get("/me", response_model=UserPublic) |
| 15 | def read_user_me(current_user: CurrentUser) -> Any: |
| 16 | """ |
| 17 | Get current user. |
| 18 | """ |
| 19 | return current_user |
| 20 | |
| 21 | |
| 22 | @router.post("", response_model=UserPublic) |
nothing calls this directly
no outgoing calls
no test coverage detected