We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when delete the login per username option by adding the line auth.validFields = ['email'] in the .env File, it is ignored.
auth.validFields = ['email']
.env
The text was updated successfully, but these errors were encountered:
Yeah... sorry but .env files are not ideal, so they don't support traditional php syntax for arrays. It gonna look a little odd, but this will do it:
auth.validFields.0 = 'email' auth.validFields.1 = 'email'
Bare in mind that you have to declare both to override initial values.
Sorry, something went wrong.
Thanks for the info! Helped me a lot.
No branches or pull requests
when delete the login per username option by adding the line
auth.validFields = ['email']
in the.env
File, it is ignored.The text was updated successfully, but these errors were encountered: