Wave 3 - Error due to missing settings in /config/devdojo/auth
Solved
while trying out wave 3, i am currently receiving the following error message, among others:
Unable to rewrite key "registration_include_password_confirmation_field" in config, does it exist?
Current Settings in Wave 3:
'redirect_after_auth' => '/dashboard',
'registration_show_password_same_screen' => true,
'registration_include_name_field' => true,
'registration_require_email_verification' => false,
'enable_branding' => true,
'dev_mode' => false,
'enable_2fa' => false, // Enable or disable 2FA functionality globally
'login_show_social_providers' => true,
'social_providers_location' => 'bottom',
Currently available based on https://github.com/thedevdojo/auth/blob/main/config/devdojo/auth/settings.php
'redirect_after_auth' => '/',
'registration_show_password_same_screen' => true,
'registration_include_name_field' => false,
'registration_include_password_confirmation_field' => false,
'registration_require_email_verification' => false,
'enable_branding' => true,
'dev_mode' => false,
'enable_2fa' => false, // Enable or disable 2FA functionality globally
'login_show_social_providers' => true,
'center_align_social_provider_button_content' => false,
'social_providers_location' => 'bottom',
'check_account_exists_before_login' => false,
Hey!
Thank you for reporting that problem!
I've submitted a PR with a fix for this:
- Bobby