From cf94bb8cf86d3b4a5bfe2a4b7e85a8ffb22c9600 Mon Sep 17 00:00:00 2001 From: or-else Date: Mon, 30 May 2022 14:36:10 -0700 Subject: [PATCH] define "private.starred" --- docs/API.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/API.md b/docs/API.md index 8c51db4a..53ea1e6b 100644 --- a/docs/API.md +++ b/docs/API.md @@ -471,8 +471,9 @@ The format of the `private` field in group and peer to peer topics is a set of k ```js private: { comment: "some comment", // string, optional user comment about a topic or a peer user - arch: true, // boolean value indicating that the topic is archived by the user, i.e. + arch: true, // boolean, indicator that the topic is archived by the user, i.e. // should not be shown in the UI with other non-archived topics. + starred: false, // boolean, an indicator that the topic is starred or pinned by the user. accepted: "JRWS" // string, 'given' mode accepted by the user. } ```