forked from aiogram/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added possibility to disable reporting and restrictions commands
- Loading branch information
1 parent
0023d98
commit 68098e9
Showing
4 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from dataclasses import dataclass | ||
|
||
from aiogram.dispatcher.filters import BoundFilter | ||
from aiogram.dispatcher.handler import ctx_data | ||
|
||
from aiogram_bot.models.chat import Chat | ||
|
||
|
||
@dataclass | ||
class ChatPropertyFilter(BoundFilter): | ||
key = "chat_property" | ||
chat_property: str | ||
|
||
async def check(self, obj) -> bool: | ||
data = ctx_data.get() | ||
chat: Chat = data["chat"] | ||
return getattr(chat, self.chat_property, False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters