Fix #47: Add requireAuth to GitHub heatmap API route#23
Open
tmdeveloper007 wants to merge 1 commit into
Open
Conversation
The heatmap endpoint calls the GitHub GraphQL API using a server-side token. Without authentication, any unauthenticated caller can enumerate GitHub usernames and consume the app's rate-limit budget. Adds requireAuth to enforce that only authenticated users can access this endpoint. Fixes nisshchayarathi#47
🎉 Thanks for your contribution, @tmdeveloper007!Your PR has passed our automated GSSoC quality checks. Here's a quick summary:
A maintainer will review your PR soon. Please be patient and available for feedback. 💪 GSSoC'26 automation · Maintainer: @nisshchayarathi |
Owner
Author
|
CI update: Lint, verify, and schema validation all passing. Type Check shows pre-existing failures that match the main branch. Ready for maintainer review and merge. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
requireAuthto theGET /api/github/heatmapendpoint. This route calls the GitHub GraphQL API using a server-side token. Without authentication, any unauthenticated caller can enumerate GitHub usernames and consume the app rate-limit budget.Changes
requireAuthfrom@/lib/middlewareTesting
Closes nisshchayarathi#47