Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Hugh Nimmo-Smith
a3fb02d2d5 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
2022-10-14 11:51:49 +01:00
2 changed files with 17 additions and 2 deletions

View file

@ -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
}
}
}

View file

@ -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"
}
}