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-09-13 19:50:40 +0300
committerJoas Schilling <coding@schilljs.com>2019-09-19 15:55:59 +0300
commit940a9351aae7dc7f95eb7a2ba35a0bc8db45a8ba (patch)
treeabb1525392ad15304e94b0050a73eb953d9563a9 /lib/Settings
parent256c9fc5878cceffc859478143f1f965e8e24be6 (diff)
Allow to limit "Start call" to users and moderators
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Settings')
-rw-r--r--lib/Settings/Admin/AllowedGroups.php2
-rw-r--r--lib/Settings/Admin/Commands.php2
-rw-r--r--lib/Settings/Admin/GeneralSettings.php71
3 files changed, 73 insertions, 2 deletions
diff --git a/lib/Settings/Admin/AllowedGroups.php b/lib/Settings/Admin/AllowedGroups.php
index dcbbbeb1d..b969bfe18 100644
--- a/lib/Settings/Admin/AllowedGroups.php
+++ b/lib/Settings/Admin/AllowedGroups.php
@@ -64,7 +64,7 @@ class AllowedGroups implements ISettings {
* E.g.: 70
*/
public function getPriority(): int {
- return 0;
+ return 10;
}
}
diff --git a/lib/Settings/Admin/Commands.php b/lib/Settings/Admin/Commands.php
index 857a08d72..af1edda27 100644
--- a/lib/Settings/Admin/Commands.php
+++ b/lib/Settings/Admin/Commands.php
@@ -75,7 +75,7 @@ class Commands implements ISettings {
* E.g.: 70
*/
public function getPriority(): int {
- return 85;
+ return 60;
}
}
diff --git a/lib/Settings/Admin/GeneralSettings.php b/lib/Settings/Admin/GeneralSettings.php
new file mode 100644
index 000000000..e6d2d2f2b
--- /dev/null
+++ b/lib/Settings/Admin/GeneralSettings.php
@@ -0,0 +1,71 @@
+<?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\Talk\Settings\Admin;
+
+
+use OCA\Talk\Config;
+use OCP\AppFramework\Http\TemplateResponse;
+use OCP\IConfig;
+use OCP\IInitialStateService;
+use OCP\Settings\ISettings;
+
+class GeneralSettings implements ISettings {
+
+ /** @var IConfig */
+ private $config;
+ /** @var IInitialStateService */
+ private $initialStateService;
+
+ public function __construct(IConfig $config,
+ IInitialStateService $initialStateService) {
+ $this->config = $config;
+ $this->initialStateService = $initialStateService;
+ }
+
+ /**
+ * @return TemplateResponse
+ */
+ public function getForm(): TemplateResponse {
+ $this->initialStateService->provideInitialState('talk', 'start_calls', (int) $this->config->getAppValue('spreed', 'start_calls', '0'));
+ return new TemplateResponse('spreed', 'settings/admin/general-settings', [], '');
+ }
+
+ /**
+ * @return string the section ID, e.g. 'sharing'
+ */
+ public function getSection(): string {
+ return 'talk';
+ }
+
+ /**
+ * @return int whether the form should be rather on the top or bottom of
+ * the admin section. The forms are arranged in ascending order of the
+ * priority values. It is required to return a value between 0 and 100.
+ *
+ * E.g.: 70
+ */
+ public function getPriority(): int {
+ return 0;
+ }
+
+}