release: fixe release
Build and Push Docker Image / build-and-push (push) Successful in 1m18s Details

This commit is contained in:
itqop 2025-10-18 19:42:17 +03:00
parent 8d4e55d874
commit c8e8cc596d
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ class WhitelistCheckResponse(BaseModel):
"""Whitelist check response schema."""
is_whitelisted: bool
player_uuid: Optional[str] = None
class WhitelistEntry(BaseModel):

View File

@ -70,7 +70,6 @@ class WhitelistService:
return WhitelistCheckResponse(
is_whitelisted=entry is not None,
player_uuid=entry.player_uuid if entry else None,
)
async def list_players(self) -> WhitelistListResponse: