fix: include token in MemberOut schema
Some checks failed
Deploy Tracker / deploy (push) Failing after 1s

This commit is contained in:
Markov 2026-02-23 12:55:59 +01:00
parent 544745de61
commit 74d9e826bc

View File

@ -34,6 +34,7 @@ class MemberOut(BaseModel):
status: str status: str
avatar_url: str | None = None avatar_url: str | None = None
agent_config: AgentConfigSchema | None = None agent_config: AgentConfigSchema | None = None
token: str | None = None
class Config: class Config:
from_attributes = True from_attributes = True