From a3fb02d2d5562dfe302e2015af34d6e3755e32f2 Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Fri, 14 Oct 2022 11:51:49 +0100 Subject: [PATCH] element.io defaults for sign in with QR develop: - enable showing QR at point of login - enable showing and scanning QR from settings - fallback server configured for when HS doesn't have MSC3886 enabled app: - enable showing QR from settings - no fallback server --- element.io/app/config.json | 7 ++++++- element.io/develop/config.json | 12 +++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/element.io/app/config.json b/element.io/app/config.json index 562834f8f1..fbf55fff81 100644 --- a/element.io/app/config.json +++ b/element.io/app/config.json @@ -50,5 +50,10 @@ "apiHost": "https://posthog.element.io" }, "privacy_policy_url": "https://element.io/cookie-policy", - "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx" + "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx", + "login_with_qr": { + "reciprocate": { + "enable_showing": true + } + } } diff --git a/element.io/develop/config.json b/element.io/develop/config.json index feec8a1be0..4b2dc13ab7 100644 --- a/element.io/develop/config.json +++ b/element.io/develop/config.json @@ -61,5 +61,15 @@ "element_call": { "url": "https://element-call.netlify.app" }, - "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx" + "map_style_url": "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx", + "login_with_qr": { + "login": { + "enable_showing": true + }, + "reciprocate": { + "enable_scanning": true, + "enable_showing": true + }, + "fallback_http_transport_server": "https://rendezvous.lab.element.dev" + } }