MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / read_users_me

Function read_users_me

backend/app/api/auth.py:156–158  ·  view source on GitHub ↗

Get current user information.

(current_user: User = Depends(get_current_active_user))

Source from the content-addressed store, hash-verified

154
155@router.get("/me", response_model=User)
156async 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")
161async def save_api_keys(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected