mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-25 00:20:41 -06:00
This commit is contained in:
parent
9deef5ac92
commit
ab6dd0a1ec
@ -38,7 +38,6 @@ SEND_REGISTRATION_MAIL=true
|
|||||||
MUST_CONFIRM_ACCOUNT=false
|
MUST_CONFIRM_ACCOUNT=false
|
||||||
|
|
||||||
SHOW_INCOMPLETE_TRANSLATIONS=false
|
SHOW_INCOMPLETE_TRANSLATIONS=false
|
||||||
SHOW_DEMO_WARNING=false
|
|
||||||
|
|
||||||
ANALYTICS_ID=
|
ANALYTICS_ID=
|
||||||
SITE_OWNER=mail@example.com
|
SITE_OWNER=mail@example.com
|
||||||
|
@ -119,7 +119,7 @@ class RegisterController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function showRegistrationForm(Request $request)
|
public function showRegistrationForm(Request $request)
|
||||||
{
|
{
|
||||||
$showDemoWarning = env('SHOW_DEMO_WARNING', false);
|
$showDemoWarning = config('firefly.show-demo-warning', false);
|
||||||
|
|
||||||
// is allowed to?
|
// is allowed to?
|
||||||
$singleUserMode = FireflyConfig::get('single_user_mode', Config::get('firefly.configuration.single_user_mode'))->data;
|
$singleUserMode = FireflyConfig::get('single_user_mode', Config::get('firefly.configuration.single_user_mode'))->data;
|
||||||
|
@ -188,4 +188,5 @@ return [
|
|||||||
],
|
],
|
||||||
'default_currency' => 'EUR',
|
'default_currency' => 'EUR',
|
||||||
'default_language' => 'en_US',
|
'default_language' => 'en_US',
|
||||||
|
'show-demo-warning' => false,
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user