You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
559 B

from telegram import ForceReply, Update
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler
class Extension:
core = None
def __init__(self, core) -> None:
self.core = core
async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE):
if update.message.from_user.id in self.core.admins:
return
if update.message.text and update.message.text.split()[0] in ["/start"]:
return
for adm_id in self.core.admins:
await update.message.forward(chat_id=adm_id)
return