- 🇨🇦Canada b_sharpe
Rather than skipping GET, wouldn't it be better to configure which methods the tag should/shouldn't apply to?
- 🇮🇳India Supreetam09 Kolkata
@b_sharpe You mean checkboxes with GET, POST, PUT, DELETE etc. options?
Currently this module only allows routes that have a specific tag to be rate limited according to applied configurations. But sometimes, a single route is used to achieve the functionality for both GET and POST methods. Ex: Form submits.
Now in case, we want to apply our rate limit on the POST method of that request, unfortunately current module implementation does not support it. So a configuration is needed to skip rate limiting GET requests. Created this to address that gap.
Add a simple config to skip rate limiting GET requests and skip functionality if config is enabled.
Needs review
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Rather than skipping GET, wouldn't it be better to configure which methods the tag should/shouldn't apply to?
@b_sharpe You mean checkboxes with GET, POST, PUT, DELETE etc. options?