Skip to content

Commit

Permalink
Merge pull request #115 from ECFMP/activity-log-user
Browse files Browse the repository at this point in the history
fix(ActivityLog): re-enable user log, except sensitive stuff
  • Loading branch information
AndyTWF authored Jun 27, 2022
2 parents c3fa29b + 4cdf548 commit 078fdde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/VatsimConnectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function callback()
$user->token = $vatsimUser->token;
$user->refresh_token = $vatsimUser->refreshToken;
$user->refresh_token_expires_at = now()->addSeconds($vatsimUser->expiresIn);
$user->save();
$user->saveQuietly();

Auth::login($user);

Expand Down
2 changes: 1 addition & 1 deletion config/filament-logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'logger' => \Z3d0X\FilamentLogger\Loggers\ResourceLogger::class,
'color' => 'success',
'exclude' => [
App\Filament\Resources\UserResource::class,
// App\Filament\Resources\UserResource::class,
],
],

Expand Down

0 comments on commit 078fdde

Please sign in to comment.