mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-08-07 14:12:19 -04:00
Large number of changes
- Changed menu structure to support Web Client - Added Quick Commands - Added Sync process for Channel Dir
This commit is contained in:
parent
783c434f3f
commit
aa6f70831f
4 changed files with 338 additions and 22 deletions
6
utils.py
6
utils.py
|
@ -71,3 +71,9 @@ def send_delete_mail_to_bbs_nodes(unique_id, bbs_nodes, interface):
|
|||
logging.info(f"SERVER SYNC: Sending delete mail sync message with unique_id: {unique_id}")
|
||||
for node_id in bbs_nodes:
|
||||
send_message(message, node_id, interface)
|
||||
|
||||
|
||||
def send_channel_to_bbs_nodes(name, url, bbs_nodes, interface):
|
||||
message = f"CHANNEL|{name}|{url}"
|
||||
for node_id in bbs_nodes:
|
||||
send_message(message, node_id, interface)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue