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) | |