🤖 Auto commit for release 'develop' on 2026-04-18

This commit is contained in:
JC5
2026-04-18 06:29:46 +02:00
parent b4b67b0759
commit 91ca3f38eb
38 changed files with 41 additions and 5 deletions
@@ -120,12 +120,13 @@ final class OAuthController extends Controller
{
// Retrieving all the OAuth app clients that belong to the user...
$clients = auth()->user()->oauthApps()->where('revoked', false)->get();
$array = [];
$array = [];
/** @var Client $client */
foreach($clients as $client) {
$item = $client->toArray();
foreach ($clients as $client) {
$item = $client->toArray();
$item['confidential'] = $client->confidential();
$array[] = $item;
$array[] = $item;
}
return response()->json($array);