Added Reply option and some fixed

Added reply option and some fixes for the Urgent board permissions
This commit is contained in:
TC² 2024-07-09 17:46:34 -04:00
parent 35c341e6e6
commit 15d836db27
4 changed files with 30 additions and 9 deletions

View file

@ -112,10 +112,14 @@ def initialize_config(config_file: str = None) -> dict[str, Any]:
if bbs_nodes == ['']:
bbs_nodes = []
print(f"Configured to sync with the following BBS nodes: {bbs_nodes}")
allowed_nodes = config.get('allow_list', 'allowed_nodes', fallback='').split(',')
if allowed_nodes == ['']:
allowed_nodes = []
print(f"Nodes with Urgent board permissions: {allowed_nodes}")
return {
'config': config,
'interface_type': interface_type,