bash / pyUltroid /dB /blacklist_chat_db.py
azils3's picture
Upload 216 files
618430a verified
raw
history blame contribute delete
391 Bytes
from .. import udB
def add_black_chat(chat_id):
chat = udB.get_key("BLACKLIST_CHATS") or []
if chat_id not in chat:
chat.append(chat_id)
return udB.set_key("BLACKLIST_CHATS", chat)
def rem_black_chat(chat_id):
chat = udB.get_key("BLACKLIST_CHATS") or []
if chat_id in chat:
chat.remove(chat_id)
return udB.set_key("BLACKLIST_CHATS", chat)