From 8672321c09ebc9a27a39e8993a1df5cc48274c07 Mon Sep 17 00:00:00 2001 From: Narasimha-sc <166327228+Narasimha-sc@users.noreply.github.com> Date: Mon, 23 Mar 2026 22:37:45 +0200 Subject: [PATCH] directory: README fixes Co-Authored-By: Claude Sonnet 4.6 --- apps/simplex-directory-service/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/simplex-directory-service/README.md b/apps/simplex-directory-service/README.md index 6881de67b0..d42f91b4b4 100644 --- a/apps/simplex-directory-service/README.md +++ b/apps/simplex-directory-service/README.md @@ -84,7 +84,7 @@ simplex-directory-service \ --web-folder /path/to/simplex-chat/website/_site/directory-data ``` -**Step 2 — switch the data URL in `website/src/js/directory.js`.** The file contains two URL definitions (around line 488); comment out the production one and uncomment the localhost one: +**Step 2 — switch the data URL in `website/src/js/directory.js`.** The file contains two URL definitions (around line 484); comment out the production one and uncomment the localhost one: ```js // const simplexDirectoryDataURL = 'https://directory.simplex.chat/data/'; const simplexDirectoryDataURL = 'http://localhost:8080/directory-data/'; @@ -212,12 +212,11 @@ Permanently removes the group from the directory. The group can be re-registered ### 4. Admin Commands -Admins receive a notification whenever a group enters pending state. The `` in `/approve` is the integer from that notification (or from `/pending`); it increments each time a group re-enters pending state so that stale approvals are rejected. +Admins receive a notification whenever a group enters the PendingApproval state. The `` in `/approve` is the integer from that notification (or from `/pending`); it increments each time a group re-enters the PendingApproval state so that stale approvals are rejected. | Command | Syntax | Effect | |---|---|---| | Approve | `/approve : [promote=on\|off]` | List group in directory; notifies owner | -| Reject | `/reject :` | Reject pending group; notifies owner | | Suspend | `/suspend :` | Hide group from directory; notifies owner | | Resume | `/resume :` | Re-list a suspended group; notifies owner | | List recent | `/last [N]` | Show last N registered groups (default: 10) |