MTM Fix how scopes are stored in the IndieAuth flow #4

Merged
jonny merged 31 commits from develop into main 2024-08-03 14:28:49 +02:00
Showing only changes of commit d77f2302ba - Show all commits

View file

@ -104,7 +104,7 @@ class IndieAuthController extends Controller
'client_id' => $request->get('client_id'),
'redirect_uri' => $request->get('redirect_uri'),
'auth_code' => $authCode,
'scope' => $request->get('scope', ''),
'scope' => implode(' ', $request->get('scope', '')),
];
Cache::put($cacheKey, $indieAuthRequestData, now()->addMinutes(10));