Rename dead is_activated references with the new is_email_confirmed (#1974)

This commit is contained in:
Clark Winkelmann 2020-02-14 15:34:32 +01:00 committed by GitHub
parent 17257aacaf
commit d5ebbab3a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View File

@ -71,7 +71,7 @@ class SendConfirmationEmailController implements RequestHandlerInterface
$this->assertRegistered($actor);
if ($actor->id != $id || $actor->is_activated) {
if ($actor->id != $id || $actor->is_email_confirmed) {
throw new PermissionDeniedException;
}

View File

@ -44,9 +44,7 @@ class ConfirmEmailHandler
$user = $token->user;
$user->changeEmail($token->email);
if (! $user->is_activated) {
$user->activate();
}
$user->activate();
$user->save();
$this->dispatchEventsFor($user);

View File

@ -111,7 +111,7 @@ class CreationTest extends TestCase
/** @var User $user */
$user = User::where('username', 'test')->firstOrFail();
$this->assertEquals(0, $user->is_activated);
$this->assertEquals(0, $user->is_email_confirmed);
$this->assertEquals('test', $user->username);
$this->assertEquals('test@machine.local', $user->email);
}