diff options
| author | kaniini <ariadne@dereferenced.org> | 2019-07-16 21:35:12 +0000 |
|---|---|---|
| committer | kaniini <ariadne@dereferenced.org> | 2019-07-16 21:35:12 +0000 |
| commit | 4ac269a2c37f335d56c91bcda81e006b6d5e6999 (patch) | |
| tree | dee6a5a7d409ba7a62a9dc4dfcd4b658f814a28e /config | |
| parent | d3b922276138cf7aaa896d52a8e35113a40e22dc (diff) | |
| parent | 2ba07b63f4557554cd4acc63dc8e0424612554a0 (diff) | |
| download | pleroma-4ac269a2c37f335d56c91bcda81e006b6d5e6999.tar.gz pleroma-4ac269a2c37f335d56c91bcda81e006b6d5e6999.zip | |
Merge branch '1094-relation-actions-rate-limiting' into 'develop'
[#1094] Rate-limited follow & unfollow actions.
Closes #1094
See merge request pleroma/pleroma!1436
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 7d539f994..03e0341c8 100644 --- a/config/config.exs +++ b/config/config.exs @@ -528,6 +528,8 @@ config :http_signatures, config :pleroma, :rate_limit, search: [{1000, 10}, {1000, 30}], app_account_creation: {1_800_000, 25}, + relations_actions: {10_000, 10}, + relation_id_action: {60_000, 2}, statuses_actions: {10_000, 15}, status_id_action: {60_000, 3} |
