diff options
Diffstat (limited to 'packages/meshbay-node/src/meshbay_node/roster.py')
| -rw-r--r-- | packages/meshbay-node/src/meshbay_node/roster.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/packages/meshbay-node/src/meshbay_node/roster.py b/packages/meshbay-node/src/meshbay_node/roster.py index ae0b4cf..b7fbf8e 100644 --- a/packages/meshbay-node/src/meshbay_node/roster.py +++ b/packages/meshbay-node/src/meshbay_node/roster.py @@ -817,14 +817,12 @@ class Roster: "photo": ("photo_roots", "list"), } - # The name each app's directories are *also* published under, for readers - # that predate the list — the handshake ack's `video_root`, and the group - # context the ack builds from. Derived from the list, never stored beside - # it, so the two cannot disagree; the shape says how to derive it. + # The name an app's directories are *also* published under, where + # something reads that name. Chat is the only one: it has a single + # destination, the handshake ack publishes it as `chat_directory`, and the + # paperclip reads it. Derived from the list, never stored beside it, so the + # two cannot disagree; the shape says how to derive it. CTX_ALIASES = { - "video": ("video_root", "scalar"), - "music": ("audio_root", "scalar"), - "photo": ("photo_roots", "list"), "chat": ("chat_directory", "scalar"), } |