You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user connected with Google for the firs time, registers automatically without a password.
On deleting the account or on changing the password, a password must be provided for those actions to be performed.
If the app generates a random password then it must be provided to the user by email, and if the password is empty for this user, then the views for those specific actions must let the "google user" to perform the action without completing the password field.
I'm guessing the problem is here: app/Http/Controllers/Auth/LoginController.php, at the findOrCreateUser function, on line 104: 'password' => bcrypt(str_random(20))
The text was updated successfully, but these errors were encountered:
I was thinking of maybe putting a link or something to a help page guiding the user into doing a reset password and then deleting their account. But your suggestion sounds good too. Maybe check to see if the user has a verified email and if so, send a confirmation email; otherwise, ask for password.
The user connected with Google for the firs time, registers automatically without a password.
On deleting the account or on changing the password, a password must be provided for those actions to be performed.
If the app generates a random password then it must be provided to the user by email, and if the password is empty for this user, then the views for those specific actions must let the "google user" to perform the action without completing the password field.
I'm guessing the problem is here: app/Http/Controllers/Auth/LoginController.php, at the findOrCreateUser function, on line 104:
'password' => bcrypt(str_random(20))
The text was updated successfully, but these errors were encountered: