diff --git a/app/controllers/api/migrations.php b/app/controllers/api/migrations.php index 75afc7ed2c..38193d1f89 100644 --- a/app/controllers/api/migrations.php +++ b/app/controllers/api/migrations.php @@ -409,7 +409,11 @@ App::get('/v1/migrations/appwrite/report') ->inject('user') ->action(function (array $resources, string $endpoint, string $projectID, string $key, Response $response) { $appwrite = new Appwrite($projectID, $endpoint, $key); - + var_dump([ + 'projectID' => $projectID, + 'endpoint' => $endpoint, + 'key' => $key + ]); try { $report = $appwrite->report($resources); } catch (\Throwable $e) {