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>2019-06-27 21:18:57 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 11:26:03 +0300
commita48650c908e0737007a21a5f08a9ddc6f707c2da (patch)
treea568242461083c2caedc26bedba829e394aad7d5 /lib/Webinary.php
parent12952b93c93ba5eb2974b400676783bd96443345 (diff)
Read and allow to set the lobby state
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Webinary.php')
-rw-r--r--lib/Webinary.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/Webinary.php b/lib/Webinary.php
new file mode 100644
index 000000000..f6bb76481
--- /dev/null
+++ b/lib/Webinary.php
@@ -0,0 +1,31 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Spreed;
+
+
+class Webinary {
+
+ public const ALL_PARTICIPANTS = 0;
+ public const MODERATORS_ONLY = 1;
+
+}