diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-11 14:55:52 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-11 14:55:52 +0200 |
| commit | cc90dc943fcd0e7bbf52674fb3f95ff097026f4a (patch) | |
| tree | 6315a5e966c027c50b92d59e60c4b506a418143e /docs/meshbay-draft-v4.md | |
| parent | edde9e441fb6b84e9d56215d6e2a8d9338b8f962 (diff) | |
| download | meshbay-cc90dc943fcd0e7bbf52674fb3f95ff097026f4a.tar.gz | |
feat: Phase 10b — Self-service UI (group create/join, upload, IndexedDB, search)
Six self-service features for the web SPA:
- Group creation UI with GEK auto-generation (AES-256-GCM ECIES)
- Member management + invite by username (GEK wrapping for invitee)
- Open group self-join flow (POST /v1/groups/{id}/join)
- File upload client→node (FILE_UPLOAD MNP type, .uploads/ staging)
- IndexedDB caching of group file indexes (instant display on revisit)
- Cross-group file search (SearchPage, pure client-side on cached indexes)
11 new tests (166 total): 8 group self-service + 3 AES GEK wrap/unwrap.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'docs/meshbay-draft-v4.md')
| -rw-r--r-- | docs/meshbay-draft-v4.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/meshbay-draft-v4.md b/docs/meshbay-draft-v4.md index fe6a521..7fea132 100644 --- a/docs/meshbay-draft-v4.md +++ b/docs/meshbay-draft-v4.md @@ -1,7 +1,7 @@ # MeshBay — Architecture Draft v4 -> Status: active development — Phases 1–10 complete (except 10.9 → Phase 13), 155 tests. -> Changes from v3: web client transport (WebRTC DataChannel), web UI architecture, hub roles (admin/moderator), hub mirror design, browser-specific NAT traversal, chat storage clarified, Phase 8 security items resolved, Phase 10 site overlay + admin/moderation UI + notifications + group search + version endpoint. +> Status: active development — Phases 1–10b complete (except 10.9 → Phase 13), 166 tests. +> Changes from v3: web client transport (WebRTC DataChannel), web UI architecture, hub roles (admin/moderator), hub mirror design, browser-specific NAT traversal, chat storage clarified, Phase 8 security items resolved, Phase 10 site overlay + admin/moderation UI + notifications + group search + version endpoint, Phase 10b self-service UI (group create/join/invite, file upload, IndexedDB caching, cross-group search). --- @@ -256,6 +256,8 @@ Complete table of validated and planned hub REST API endpoints. Endpoints marked | POST | `/v1/notifications/read-all` | Access token | Mark all notifications as read | ✓ Phase 10 | | GET | `/v1/groups?q=` | None | Search public groups by name (ilike) | ✓ Phase 10 | | GET | `/v1/hub/version` | None | Client version check (hub, MNP, MHP) | ✓ Phase 10 | +| GET | `/v1/groups/{id}/members` | Access token | List group members (requires membership) | ✓ Phase 10b | +| POST | `/v1/groups/{id}/join` | Access token | Self-join open group | ✓ Phase 10b | ### 4.2 Mesh Node |