fictadvisor / fictadvisor-bot

Telegram bot for fictadvisor.com
11 stars 0 forks source link

Add flag post_info in telegram_group model #83

Closed Kulunchick closed 12 months ago

Kulunchick commented 12 months ago

class CreateTelegramGroup(Base): telegram_id: int = Field(alias="telegramId") thread_id: Optional[int] = Field(None, alias="threadId") source: TelegramSource

and here
```python
class TelegramGroup(Base):
    telegram_id: int = Field(alias="telegramId")
    thread_id: Optional[int] = Field(alias="threadId")
    source: TelegramSource