Skip to content

Commit

Permalink
Merge pull request #127 from thedevdojo/fix_strict_models_social_crea…
Browse files Browse the repository at this point in the history
…tion

Fix strict models social creation
  • Loading branch information
tnylea authored Sep 20, 2024
2 parents 28427dd + 0628bf0 commit 9c0c24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class User extends Authenticatable implements MustVerifyEmail
use HasSocialProviders, Notifiable;

protected $fillable = [
'name', 'email', 'password', 'two_factor_secret', 'two_factor_recovery_codes', 'two_factor_confirmed_at',
'name', 'email', 'password', 'two_factor_secret', 'two_factor_recovery_codes', 'two_factor_confirmed_at', 'email_verified_at',
];

public function hasVerifiedEmail()
Expand Down

0 comments on commit 9c0c24f

Please sign in to comment.