Skip to content
Snippets Groups Projects
Commit 619af71f authored by Alexandre Eberhardt's avatar Alexandre Eberhardt
Browse files

accountDiscovery: set default to false

Disable account discorvery and publish in default setup and default blueprint
For privacy reasons, account discovery and publish should be false by default

Change-Id: I7d906433bc53222e7bd8befd7d789477884e80aa
parent 402c5d8a
No related branches found
No related tags found
No related merge requests found
......@@ -95,8 +95,8 @@ create_blueprint() {
"allowCertFromTrusted":true,
"autoAnswer":false,
"peerDiscovery":true,
"accountDiscovery":true,
"accountPublish":true,
"accountDiscovery":false,
"accountPublish":false,
"rendezVous":false,
"defaultModerators":"",
"upnpEnabled":true,
......
......@@ -77,8 +77,8 @@ const DEFAULT_POLICY_DATA_PERMISSIONS: PolicyDataPermissions = {
publicInCalls: false,
autoAnswer: false,
peerDiscovery: true,
accountPublish: true,
accountDiscovery: true,
accountPublish: false,
accountDiscovery: false,
allowLookup: true,
rendezVous: false,
......@@ -134,8 +134,8 @@ export function createDefaultServerPolicyData(): ServerPolicyData {
allowCertFromTrusted: true,
autoAnswer: false,
peerDiscovery: true,
accountDiscovery: true,
accountPublish: true,
accountDiscovery: false,
accountPublish: false,
rendezVous: false,
defaultModerators: "",
upnpEnabled: true,
......
......@@ -126,8 +126,8 @@ export default function CreateBlueprintDialog({
allowCertFromTrusted: true,
autoAnswer: false,
peerDiscovery: true,
accountDiscovery: true,
accountPublish: true,
accountDiscovery: false,
accountPublish: false,
rendezVous: false,
defaultModerators: "",
upnpEnabled: true,
......
......@@ -43,9 +43,9 @@ public class PolicyDataServlet extends HttpServlet {
* @apiSuccessExample {json} Success-Response: [{ "allowCertFromHistory": true, "allowLookup":
* true, "allowCertFromContact": true, "allowCertFromTrusted": true, "Account.videoEnabled":
* true, "DHTRelay.PublicInCalls": false, "Account.autoAnswer": false,
* "Account.peerDiscovery": true, "Account.accountDiscovery": true,
* "Account.accountPublish": true, "Account.rendezVous": false, "Account.upnpEnabled": true,
* "Account.defaultModerators": "", "Account.uiCustomization":
* "Account.peerDiscovery": true, "Account.accountDiscovery": false,
* "Account.accountPublish": false, "Account.rendezVous": false, "Account.upnpEnabled":
* true, "Account.defaultModerators": "", "Account.uiCustomization":
* "{\"areTipsEnabled\":false,\"backgroundType\":\"default\"}" }]
* @apiError (404) {null} null Policy Data was unable to be retrieved
* @apiError (500) {null} null Policy Data was unable to be retrieved
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment