mealie/tests/utils/fixture_schemas.py
Shlok Sheth 4b992afc67
fix: Recipe comments display a username/id rather than … (#4726)
Co-authored-by: Kuchenpirat <jojow@gmx.net>
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
2025-01-14 16:00:23 +00:00

29 lines
601 B
Python

from dataclasses import dataclass
from typing import Any
from uuid import UUID
from mealie.db.models.users.users import AuthMethod
from mealie.repos.repository_factory import AllRepositories
@dataclass
class TestUser:
email: str
user_id: UUID
username: str
full_name: str
password: str
_group_id: UUID
_household_id: UUID
token: Any
auth_method = AuthMethod.MEALIE
repos: AllRepositories
@property
def group_id(self) -> str:
return str(self._group_id)
@property
def household_id(self) -> str:
return str(self._household_id)