mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Disable exchange rates by default.
This commit is contained in:
parent
f591996f04
commit
db0dbcfcf1
@ -184,6 +184,11 @@ SEND_REPORT_JOURNALS=true
|
|||||||
# Since this involves an external service, it's optional and disabled by default.
|
# Since this involves an external service, it's optional and disabled by default.
|
||||||
ENABLE_EXTERNAL_MAP=false
|
ENABLE_EXTERNAL_MAP=false
|
||||||
|
|
||||||
|
#
|
||||||
|
# Enable or disable exchange rate conversion. This function isn't used yet by Firefly III
|
||||||
|
#
|
||||||
|
ENABLE_EXCHANGE_RATES=false
|
||||||
|
|
||||||
# Set this value to true if you want Firefly III to download currency exchange rates
|
# Set this value to true if you want Firefly III to download currency exchange rates
|
||||||
# from the internet. These rates are hosted by the creator of Firefly III inside
|
# from the internet. These rates are hosted by the creator of Firefly III inside
|
||||||
# an Azure Storage Container.
|
# an Azure Storage Container.
|
||||||
|
@ -24,7 +24,7 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'url' => 'https://ff3exchangerates.z6.web.core.windows.net',
|
'url' => 'https://ff3exchangerates.z6.web.core.windows.net',
|
||||||
'enabled' => true,
|
'enabled' => env('ENABLE_EXCHANGE_RATES', false),
|
||||||
'download_enabled' => env('ENABLE_EXTERNAL_RATES', false),
|
'download_enabled' => env('ENABLE_EXTERNAL_RATES', false),
|
||||||
|
|
||||||
// if currencies are added, default rates must be added as well!
|
// if currencies are added, default rates must be added as well!
|
||||||
|
Loading…
Reference in New Issue
Block a user