Compare commits
2 Commits
85f621f301
...
bbcbd3142c
Author | SHA1 | Date | |
---|---|---|---|
|
bbcbd3142c | ||
|
7d8ba1dc99 |
@ -2,6 +2,14 @@
|
||||
|
||||
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
|
||||
|
||||
1. `git clone https://git.end-play.xyz/profitroll/HoloCheckerBot.git`
|
||||
|
7
main.py
7
main.py
@ -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__":
|
||||
|
||||
logWrite(f"Starting up with pid {pid}")
|
||||
|
Reference in New Issue
Block a user