Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-09-25 12:50:04 +0300
committerJoas Schilling <coding@schilljs.com>2020-12-10 13:47:04 +0300
commit4ebae32362d081c144717c58d4549e22aabb683e (patch)
treef6754757d82a1f6eaf2e5ef81a37cf58c2deeb33 /src/constants.js
parentb672400bf05ecb9f4ed05538b1ccaeb8aea2d668 (diff)
Introduce a privacy settings for the read_status
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index a3d3c0a98..6beaaa2e2 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -96,3 +96,7 @@ export const FLOW = {
ROOM_MENTION: 3,
},
}
+export const PRIVACY = {
+ PRIVATE: 'private',
+ PUBLIC: 'public',
+}