Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: response for automated checks
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Sep 11, 2024
1 parent ba7f13e commit adb7158
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/api/system/checks/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,9 @@ export async function GET(request, { params }) {

console.log("CHECKS PERFORMED", runs);

return Response.json(runs);
return Response.json({
runs,
ignores: repoStatus.ignore,
errors: repoStatus.error,
});
}

0 comments on commit adb7158

Please sign in to comment.