(self)
| 25 | return bool(doc and channel_id in doc.get("channels", [])) |
| 26 | |
| 27 | async def del_join_req(self): |
| 28 | await self.join_requests.drop() |
| 29 | await self.fsub_cache.drop() |
| 30 | |
| 31 | async def save_fsub_msg(self, user_id: int, message_id: int): |
| 32 | await self.fsub_cache.update_one( |