mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-28 19:08:44 -07:00
🤖 Auto commit for release 'develop' on 2026-04-18
This commit is contained in:
@@ -45,11 +45,9 @@ use Illuminate\Http\Request;
|
||||
use Illuminate\Routing\Redirector;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Illuminate\View\View;
|
||||
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
use SensitiveParameter;
|
||||
@@ -68,8 +66,9 @@ final class ProfileController extends Controller
|
||||
/**
|
||||
* ProfileController constructor.
|
||||
*/
|
||||
public function __construct(protected ValidationFactory $validation,)
|
||||
{
|
||||
public function __construct(
|
||||
protected ValidationFactory $validation
|
||||
) {
|
||||
parent::__construct();
|
||||
|
||||
$this->middleware(static function ($request, $next) {
|
||||
@@ -189,7 +188,7 @@ final class ProfileController extends Controller
|
||||
$user = auth()->user();
|
||||
$isInternalAuth = $this->internalAuth;
|
||||
// $count = DB::table('oauth_clients')->where('personal_access_client', true)->whereNull('user_id')->count();
|
||||
$count = 0;
|
||||
$count = 0;
|
||||
$subTitle = $user->email;
|
||||
$userId = $user->id;
|
||||
$enabled2FA = null !== $user->mfa_secret;
|
||||
@@ -200,12 +199,12 @@ final class ProfileController extends Controller
|
||||
$mfaBackupCount = count($recoveryData);
|
||||
$this->createOAuthKeys();
|
||||
|
||||
// if (0 === $count) {
|
||||
// /** @var ClientRepository $repository */
|
||||
// $repository = app(ClientRepository::class);
|
||||
// $name = sprintf('%s Personal Access Grant Client', config('app.name'));
|
||||
// $repository->createPersonalAccessClient(null, $name, 'http://localhost');
|
||||
// }
|
||||
// if (0 === $count) {
|
||||
// /** @var ClientRepository $repository */
|
||||
// $repository = app(ClientRepository::class);
|
||||
// $name = sprintf('%s Personal Access Grant Client', config('app.name'));
|
||||
// $repository->createPersonalAccessClient(null, $name, 'http://localhost');
|
||||
// }
|
||||
|
||||
$accessToken = Preferences::get('access_token');
|
||||
if (null === $accessToken) {
|
||||
|
||||
Reference in New Issue
Block a user