From 85a4e434aa3d144dd5ce574606a42419e5ac3398 Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Tue, 30 Jun 2026 11:31:18 -0400 Subject: [PATCH] correct docs --- README.md | 2 +- apps/ns/src/endpoints.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dd25f78..e24160c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ but not yet backed by a Worker. Not all services are fully implemented. | Link | `link` | — | Not yet implemented | | Lists | `lists` | — | Not yet implemented | | Matchmaking | `match` | `match` | Matchmaking & per-player presence (D1, KV) | -| Moderation | `api` | `api` | Served by the `api` worker (shares the API host) | +| Moderation | `moderation` | — | Not yet implemented | | Notifications | `notify` | `notify` | Real-time notifications over SignalR/WebSockets (Durable Object) | | PlatformNotifications | `platformnotifications` | — | Not yet implemented | | PlayerSettings | `playersettings` | `playersettings` | Per-player settings (KV) | diff --git a/apps/ns/src/endpoints.ts b/apps/ns/src/endpoints.ts index 283d8ce..5d66976 100644 --- a/apps/ns/src/endpoints.ts +++ b/apps/ns/src/endpoints.ts @@ -28,7 +28,7 @@ const SERVICE_SUBDOMAINS = { Link: 'link', Lists: 'lists', Matchmaking: 'match', - Moderation: 'api', + Moderation: 'moderation', Notifications: 'notify', PlatformNotifications: 'platformnotifications', PlayerSettings: 'playersettings',