Move telemetry option into settings; checkbox in install refs #415 (#416)

This commit is contained in:
Nabeel S
2019-10-29 13:07:53 -04:00
committed by GitHub
parent a2ea9b29ba
commit ae68550448
7 changed files with 76 additions and 38 deletions

View File

@@ -17,10 +17,6 @@ return [
'locale' => env('APP_LOCALE', 'en'),
'fallback_locale' => 'en',
// This sends install and vaCentral specific information to help with
// optimizations and figuring out where slowdowns might be happening
'analytics' => true,
//
// Anything below here won't need changing and could break things
//

View File

@@ -1,10 +1,10 @@
<?php
return [
'tracking_id' => 'UA-100567975-1',
'tracking_id' => 'UA-100567975-4',
'protocol_version' => 1,
'is_ssl' => false,
'is_ssl' => true,
'is_disabled' => false,
'anonymize_ip' => false,
'async_requests' => false,
'anonymize_ip' => true,
'async_requests' => true,
];