Compare commits

..

2 Commits

Author SHA1 Message Date
Profitroll
bbcbd3142c Check if user's link is valid 2022-10-23 16:22:38 +02:00
Profitroll
7d8ba1dc99 Improved README a bit 2022-10-23 16:22:25 +02:00
2 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,14 @@
Small Telegram bot made on Pyrogram Small Telegram bot made on Pyrogram
## What can this bot do?
* Get user applications
* Send applications to the admins
* Give one-time links to join group
* Track down users that were not allowed to join
* Show applications to other users
## Installation ## Installation
1. `git clone https://git.end-play.xyz/profitroll/HoloCheckerBot.git` 1. `git clone https://git.end-play.xyz/profitroll/HoloCheckerBot.git`

View File

@ -327,6 +327,13 @@ async def any_stage(app, msg):
# ============================================================================================================================== # ==============================================================================================================================
# Filter users on join =========================================================================================================
@app.on_chat_member_updated(filters.new_chat_members, group=configGet("destination_group"))
async def filter_join(app, member):
pass # Check if invite link belongs to this user
# ==============================================================================================================================
if __name__ == "__main__": if __name__ == "__main__":
logWrite(f"Starting up with pid {pid}") logWrite(f"Starting up with pid {pid}")