Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build/ajax/setAdminSettings.php')
-rw-r--r--build/ajax/setAdminSettings.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/ajax/setAdminSettings.php b/build/ajax/setAdminSettings.php
index d327e72..7a098f1 100644
--- a/build/ajax/setAdminSettings.php
+++ b/build/ajax/setAdminSettings.php
@@ -11,6 +11,7 @@ $config->setAppValue('ojsxc', 'xmppDomain', trim($_POST ['xmppDomain']));
$config->setAppValue('ojsxc', 'xmppResource', trim($_POST ['xmppResource']));
$config->setAppValue('ojsxc', 'xmppOverwrite', (isset($_POST ['xmppOverwrite'])) ? $_POST ['xmppOverwrite'] : 'false');
$config->setAppValue('ojsxc', 'xmppStartMinimized', (isset($_POST ['xmppStartMinimized'])) ? $_POST ['xmppStartMinimized'] : 'false');
+$config->setAppValue('ojsxc', 'xmppPreferMail', (isset($_POST ['xmppPreferMail'])) ? $_POST ['xmppPreferMail'] : 'false');
$config->setAppValue('ojsxc', 'iceUrl', trim($_POST ['iceUrl']));
$config->setAppValue('ojsxc', 'iceUsername', trim($_POST ['iceUsername']));
@@ -18,4 +19,7 @@ $config->setAppValue('ojsxc', 'iceCredential', $_POST ['iceCredential']);
$config->setAppValue('ojsxc', 'iceSecret', $_POST ['iceSecret']);
$config->setAppValue('ojsxc', 'iceTtl', $_POST ['iceTtl']);
+$config->setAppValue('ojsxc', 'firefoxExtension', $_POST ['firefoxExtension']);
+$config->setAppValue('ojsxc', 'chromeExtension', $_POST ['chromeExtension']);
+
echo 'true';