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

github.com/ONLYOFFICE/onlyoffice-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAntipkin-A <Artem.Antipkin@onlyoffice.com>2020-07-27 14:03:46 +0300
committerAntipkin-A <Artem.Antipkin@onlyoffice.com>2020-07-27 14:03:46 +0300
commit4558d50c12e5bbea0f64418aa1f61ecc73a8cd1e (patch)
tree6c3a03a354bdc654f071f79ef216619a1b505547 /js
parent3ee83ea771674af0660a29463a8233e888b90714 (diff)
threw verification setting
Diffstat (limited to 'js')
-rw-r--r--js/settings.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/settings.js b/js/settings.js
index fe41d2b..da5e00f 100644
--- a/js/settings.js
+++ b/js/settings.js
@@ -149,6 +149,7 @@
var onlyofficeInternalUrl = ($("#onlyofficeInternalUrl:visible").val() || "").trim();
var onlyofficeStorageUrl = ($("#onlyofficeStorageUrl:visible").val() || "").trim();
+ var onlyofficeVerifyPeerOff = $("#onlyofficeVerifyPeerOff").prop("checked");
var onlyofficeSecret = ($("#onlyofficeSecret:visible").val() || "").trim();
var demo = $("#onlyofficeDemo").prop("checked");
@@ -159,6 +160,7 @@
documentserver: onlyofficeUrl,
documentserverInternal: onlyofficeInternalUrl,
storageUrl: onlyofficeStorageUrl,
+ verifyPeerOff: onlyofficeVerifyPeerOff,
secret: onlyofficeSecret,
demo: demo
},