diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/api/webapp.py')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/api/webapp.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py index a1807ea..58040b6 100644 --- a/packages/meshbay-hub/src/meshbay_hub/api/webapp.py +++ b/packages/meshbay-hub/src/meshbay_hub/api/webapp.py @@ -38,6 +38,14 @@ _ASSETS = ("style.css", "keyderive.js", "crypto.js", "transport.js", "app.js", "chat-app.js", "files-app.js", "video-player.js", "video-app.js", "music-app.js", "music-player.js", "photos-app.js", "group-settings.js", "group-page.js", + # The per-app settings architecture (docs/refactor-groups.md §3): + # the shared widgets, the folder picker, and one settings pane per + # app. Reached through the `apps.js` registry rather than imported + # by name anywhere, which is exactly why they have to be listed — + # nothing else would notice one of them changing. + "settings-ui.js", "folder-tree.js", + "chat-app-settings.js", "video-app-settings.js", + "music-app-settings.js", "photos-app-settings.js", # Pages extracted from app.js — statically imported or lazy-loaded, # but all must participate in the content hash. "auth-page.js", "explore-page.js", "create-group-page.js", |