completed telegram subscriber list functionality
This commit is contained in:
parent
86d63fe9a0
commit
a8504971ea
|
@ -13,6 +13,10 @@ class TelegramBot(Bot):
|
|||
updates = tb.get_updates().wait()
|
||||
reports = []
|
||||
for update in updates:
|
||||
if update.message.text =="/stop":
|
||||
remove_telegram_subscribers(self, update.message.from.id)
|
||||
else:
|
||||
add_telegram_subscribers(self, update.message.from.id)
|
||||
reports.append(Report(update.message.from.username,self,
|
||||
update.message.text,None,update.message.date))
|
||||
return reports
|
||||
|
|
Loading…
Reference in a new issue