Skip to content

Commit adac60f

Browse files
committed
Merge pull request mongodb#1933 from divine/pr_1746
[Updated PR#1746] Add MustVerifyEmail
2 parents 502f485 + b1ed1a4 commit adac60f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Jenssegers/Mongodb/Auth/User.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Jenssegers\Mongodb\Auth;
44

55
use Illuminate\Auth\Authenticatable;
6+
use Illuminate\Auth\MustVerifyEmail;
67
use Illuminate\Auth\Passwords\CanResetPassword;
78
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
89
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
@@ -15,5 +16,5 @@ class User extends Model implements
1516
AuthorizableContract,
1617
CanResetPasswordContract
1718
{
18-
use Authenticatable, Authorizable, CanResetPassword;
19+
use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
1920
}

0 commit comments

Comments
 (0)