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:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 11:06:21 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 11:28:30 +0300
commit8745fd19fe6c36a9b6d5b7f45abe3c53ed7a2798 (patch)
treeac311bb103fd4afd40865baeb85cc57e6fcb7d3d /lib/Webinary.php
parent0e4fcbbf6b4eec0fe7d11c27f475d91f743bb2c2 (diff)
Rename lobby constants
The lobby constants were named from the point of view of the webinary (open to all participants, open to moderators only), but from the point of view of the lobby it is the opposite (no lobby, lobby for non moderators). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib/Webinary.php')
-rw-r--r--lib/Webinary.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Webinary.php b/lib/Webinary.php
index f6bb76481..869140db4 100644
--- a/lib/Webinary.php
+++ b/lib/Webinary.php
@@ -25,7 +25,7 @@ namespace OCA\Spreed;
class Webinary {
- public const ALL_PARTICIPANTS = 0;
- public const MODERATORS_ONLY = 1;
+ public const LOBBY_NONE = 0;
+ public const LOBBY_NON_MODERATORS = 1;
}