Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added optional $secret variable to EnableTwoFactorAuthentication.php #48

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
styleCI fixes
  • Loading branch information
jetwes committed Sep 17, 2020
commit f758f17d74adae0083532147b9127c8b7ce15011
4 changes: 2 additions & 2 deletions src/Actions/EnableTwoFactorAuthentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(TwoFactorAuthenticationProvider $provider)
}

/**
* Enable two factor authentication for the user after checking if a optional given secret is valid
* Enable two factor authentication for the user after checking if a optional given secret is valid.
*
* @param mixed $user
* @param ?string $secret
Expand All @@ -47,7 +47,7 @@ public function __invoke($user, $secret = null)
}

$user->forceFill([
'two_factor_secret' => (!$secret ? encrypt($this->provider->generateSecretKey()) : encrypt($secret)),
'two_factor_secret' => (! $secret ? encrypt($this->provider->generateSecretKey()) : encrypt($secret)),
'two_factor_recovery_codes' => encrypt(json_encode(Collection::times(8, function () {
return RecoveryCode::generate();
})->all())),
Expand Down