Get current user information.
(current_user: User = Depends(get_current_active_user))
| 154 | |
| 155 | @router.get("/me", response_model=User) |
| 156 | async def read_users_me(current_user: User = Depends(get_current_active_user)): |
| 157 | """Get current user information.""" |
| 158 | return current_user |
| 159 | |
| 160 | @router.post("/api-keys") |
| 161 | async def save_api_keys( |
nothing calls this directly
no outgoing calls
no test coverage detected