MCPcopy Index your code
hub / github.com/fastapi-users/fastapi-users / UserModel

Class UserModel

tests/conftest.py:39–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37
38@dataclasses.dataclass
39class UserModel(models.UserProtocol[IDType]):
40 email: str
41 hashed_password: str
42 id: IDType = dataclasses.field(default_factory=uuid.uuid4)
43 is_active: bool = True
44 is_superuser: bool = False
45 is_verified: bool = False
46 first_name: str | None = None
47
48
49@dataclasses.dataclass

Callers 6

userFunction · 0.85
inactive_userFunction · 0.85
verified_userFunction · 0.85
superuserFunction · 0.85
verified_superuserFunction · 0.85
createMethod · 0.85

Calls

no outgoing calls

Tested by 6

userFunction · 0.68
inactive_userFunction · 0.68
verified_userFunction · 0.68
superuserFunction · 0.68
verified_superuserFunction · 0.68
createMethod · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…