(_, __, update)
| 81 | logging.error(f"Failed to send start link to {user_id}: {e}") |
| 82 | |
| 83 | def is_auth_req_channel(_, __, update): |
| 84 | return update.chat.id in Config.AUTH_REQ_CHANNELS |
| 85 | |
| 86 | @Client.on_chat_join_request(filters.create(is_auth_req_channel)) |
| 87 | async def join_reqs(client: Client, message: ChatJoinRequest): |
nothing calls this directly
no outgoing calls
no test coverage detected