Skip to content

Commit

Permalink
disable hash for secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
elyerr committed Dec 31, 2023
1 parent b982132 commit 2a0b1c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/OAuth/ClientController.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public function forUser(Request $request)
return $clients;
}

$clients->each(function ($client) {
/**$clients->each(function ($client) {
$client->secret = Hash::make($client->secret);
});
});*/

return $clients->makeVisible('secret');
}
Expand Down

0 comments on commit 2a0b1c0

Please sign in to comment.