feat: ability to turn off logs for admins users

This commit is contained in:
3252a8
2026-05-12 10:16:59 +03:00
parent c8d4b3565c
commit 9679190709
7 changed files with 27 additions and 2 deletions
+4
View File
@@ -383,6 +383,10 @@ class Settings(BaseSettings):
)
LOGS_PAGE_SIZE: int = Field(default=10)
LOG_ADMIN_ACTIONS: bool = Field(
default=True,
description="Log updates/events triggered by users from ADMIN_IDS.",
)
SUBSCRIPTION_MINI_APP_URL: Optional[str] = Field(default=None)