[docs-infra] Rate-limit the documentation feedback endpoint - #49115
Draft
Janpot wants to merge 1 commit into
Draft
[docs-infra] Rate-limit the documentation feedback endpoint#49115Janpot wants to merge 1 commit into
Janpot wants to merge 1 commit into
Conversation
Deploy previewBundle size
Check out the code infra dashboard for more information about this PR. |
The feedback function is public and unauthenticated: any POST with callback_id "send_feedback" makes the bot post to an internal Slack channel. Add Netlify's built-in rate limiting (6 requests/minute per IP) so a single client can't flood the channel with posts. The platform enforces it before the handler runs.
Janpot
force-pushed
the
rate-limit-feedback-endpoint
branch
from
September 8, 2026 15:08
66ec889 to
707a35d
Compare
12 tasks
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.
The docs feedback function is public and unauthenticated — any POST with
callback_id: "send_feedback"makes the bot post to an internal Slack channel, with no per-client limit. This adds Netlify's built-in rate limiting via the functionconfig(enforced by the platform before the handler runs, so throttled requests never reach Slack or spend a function invocation).Set to 6 requests/minute per IP — enough for genuine feedback while cutting off automated spam.