-
Notifications
You must be signed in to change notification settings - Fork 332
[SQSERVICES-1980] Guest Links Password Retry Limit #3202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| `conversations/join` endpoint rate limited per IP address | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -444,6 +444,11 @@ nginx_conf: | |
| - all | ||
| doc: true | ||
| oauth_scope: conversations_code | ||
| - path: /conversations/join | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do I understand correctly that this is an authenticated-endpoint-only? I don't have enough context here to actually approve this PR. The rate limit bit is fine; but this adds a new public endpoint which I don't know exactly how it works what it does and how product wise it's supposed to be used. But the existing guest links use
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This PR does not introduce a new endpoint. It was already there before and did match the following directive: - path: /conversations
envs:
- allI just created a new entry, so that the configuration is only applied to the path
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah I see. Okay. That's fine. Thanks for the context. |
||
| envs: | ||
| - all | ||
| specific_user_rate_limit: reqs_per_addr | ||
| specific_user_rate_limit_burst: "10" | ||
| - path: /conversations | ||
| envs: | ||
| - all | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose this introduces the conversations/join endpoint in the public API. The rate limit is secondary. Can you reformulate and move this to API changes subfolder?