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 /lib/Participant.php
parentb672400bf05ecb9f4ed05538b1ccaeb8aea2d668 (diff)
Introduce a privacy settings for the read_status
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Participant.php')
-rw-r--r--lib/Participant.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Participant.php b/lib/Participant.php
index b0a6bfaa6..3c2dfc149 100644
--- a/lib/Participant.php
+++ b/lib/Participant.php
@@ -48,6 +48,9 @@ class Participant {
public const NOTIFY_MENTION = 2;
public const NOTIFY_NEVER = 3;
+ public const PRIVACY_PRIVATE = 'private';
+ public const PRIVACY_PUBLIC = 'public';
+
/** @var Room */
protected $room;
/** @var Attendee */