Frontmatter
| id | 7585 |
| title | Implement Missing #checkGhAuth Method in HealthService |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Oct 20, 2025, 3:50 PM |
| updatedAt | Oct 20, 2025, 3:56 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7585 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 7564 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 20, 2025, 3:56 PM |
A code review revealed that the
HealthService.healthcheckmethod calls a private method,#checkGhAuth(), which does not exist in the file. This is a critical bug that causes the health check to fail and prevents the server from starting.This ticket covers the implementation of the missing authentication check.
Acceptance Criteria
#checkGhAuth(), is implemented inHealthService.mjs.gh auth statuscommand.github.com.{ authenticated: boolean, error?: string }.authenticatedshould betrueif login is successful,falseotherwise.errorshould contain an informative message if authentication fails.