Compare commits

...

2 Commits

Author SHA1 Message Date
unknown
a014acd35d add bots token 2025-10-23 01:36:19 +03:00
unknown
1f414e85bc add bots token 2025-10-23 01:36:09 +03:00
2 changed files with 1 additions and 3 deletions

View File

@ -15,7 +15,6 @@ auth_scheme = HTTPBearer()
@dataclass
class CurrentUser:
token: str
is_bot: str
user_id: str
session_id: str
permissions: List[str]
@ -125,7 +124,6 @@ async def fetch_user_for_sio(
return CurrentUser(
token=token,
is_bot=data["is_bot"],
user_id=data["user_id"],
session_id=data["session_id"],
permissions=data["permissions"]

View File

@ -1,6 +1,6 @@
[project]
name = "common-lib"
version = "0.0.33"
version = "0.0.34"
description = "Библиотека общих компонентов для микросервисов yobble"
authors = [{ name = "cheykrym", email = "you@example.com" }]
license = "MIT"