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>2017-07-25 18:20:49 +0300
committerJoas Schilling <coding@schilljs.com>2017-08-07 14:00:01 +0300
commite69cc66c1630700d9a970f1923a461b970c8cb56 (patch)
tree175ed2a6feb3a28cc3cbf035344966c4e1ad8335 /lib/Participant.php
parent17205cdeda570f9d843b49427ff84f1e37e8523e (diff)
Fix self-joining of users to a public room and remove them on making it private
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Participant.php')
-rw-r--r--lib/Participant.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Participant.php b/lib/Participant.php
index 7c92ffd90..5b994d148 100644
--- a/lib/Participant.php
+++ b/lib/Participant.php
@@ -30,6 +30,7 @@ class Participant {
const MODERATOR = 2;
const USER = 3;
const GUEST = 4;
+ const USER_SELF_JOINED = 5;
/** @var IDBConnection */
protected $db;