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
path: root/src/views
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2021-11-16 19:12:22 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2021-11-17 15:48:58 +0300
commite2ba672f16b9036edf6d52db828fb81f50edd3c0 (patch)
treed39466dc35766287fe72d0df4a5e49a1df9460b6 /src/views
parent9c536ef3ccf2f67090540e0f0ee0e68ac9d26c4c (diff)
Add setup check for background blur
A new section is added to Talk administration settings for web server checks. The check creates a JitsiStreamBackgroundEffect object to ensure that the background blur files could be initialized, rather than implementing its own logic to verify the .wasm and .tflite files. Due to this, the browser running the check needs to support and have WebAssembly enabed, although it does not need to support the background blur itself (like Safari, which does not implement the needed canvas filters, but can anyway be used to do the check). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/AdminSettings.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/views/AdminSettings.vue b/src/views/AdminSettings.vue
index 095c7903b..e86397f63 100644
--- a/src/views/AdminSettings.vue
+++ b/src/views/AdminSettings.vue
@@ -26,6 +26,7 @@
<MatterbridgeIntegration />
<AllowedGroups />
<Commands />
+ <WebServerSetupChecks />
<StunServers />
<TurnServers />
<SignalingServers />
@@ -44,6 +45,7 @@ import SignalingServers from '../components/AdminSettings/SignalingServers'
import SIPBridge from '../components/AdminSettings/SIPBridge'
import StunServers from '../components/AdminSettings/StunServers'
import TurnServers from '../components/AdminSettings/TurnServers'
+import WebServerSetupChecks from '../components/AdminSettings/WebServerSetupChecks'
export default {
name: 'AdminSettings',
@@ -58,6 +60,7 @@ export default {
SIPBridge,
StunServers,
TurnServers,
+ WebServerSetupChecks,
},
}
</script>