1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-07 08:34:40 -04:00

Added webchat command

This patch adds the new aprsd webchat command which shows
a new webpage that allows you to aprsd chat with multiple
callsigns
This commit is contained in:
2022-07-20 08:43:57 -04:00
parent 1ccb2f7695
commit 585d55f10d
56 changed files with 1481 additions and 111 deletions
+4 -1
View File
@@ -15,7 +15,10 @@ F = t.TypeVar("F", bound=t.Callable[..., t.Any])
class TestDevTestPluginCommand(unittest.TestCase):
def _build_config(self, login=None, password=None):
config = {"aprs": {}}
config = {
"aprs": {},
"aprsd": {"trace": False},
}
if login:
config["aprs"]["login"] = login
+4 -1
View File
@@ -15,7 +15,10 @@ F = t.TypeVar("F", bound=t.Callable[..., t.Any])
class TestSendMessageCommand(unittest.TestCase):
def _build_config(self, login=None, password=None):
config = {"aprs": {}}
config = {
"aprs": {},
"aprsd": {"trace": False},
}
if login:
config["aprs"]["login"] = login