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
{{ message }}
This repository was archived by the owner on Jan 10, 2020. It is now read-only.
when user clicks on activation link, laravel does not activate account and instead asks them to resend activation email..
Solution:
change UserService
Do not return
$userMeta->user()->first()
as this will return the first user in the dbInstead
`public function findByActivationToken($token)
{
$userMeta = $this->userMeta->where('activation_token', $token)->first();
`
I should probably fork and submit PRs instead :)
The text was updated successfully, but these errors were encountered: