diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-09 20:06:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 20:06:51 +0100 |
commit | b2cd34474b58b8a1f5e01ba73d236551dd0a878f (patch) | |
tree | 53e6abc10bd98ebd99d33ae51b67940734bd99fe /app/controllers | |
parent | 803f536cdd2e378146372976b64896a656ceec5b (diff) |
Add rate limit for editing (#17728)
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/statuses_controller.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index f48aeb945..3fe137bfd 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -10,6 +10,7 @@ class Api::V1::StatusesController < Api::BaseController before_action :set_thread, only: [:create] override_rate_limit_headers :create, family: :statuses + override_rate_limit_headers :update, family: :statuses # This API was originally unlimited, pagination cannot be introduced without # breaking backwards-compatibility. Arbitrarily high number to cover most |