From 7c99466d3ead1a60984131bc66edc5042a41910b Mon Sep 17 00:00:00 2001 From: Krzysztof Kotlarek Date: Mon, 20 Jan 2025 16:46:33 +1100 Subject: [PATCH] FIX: `fast_typing_threshold` site setting In this PR `min_first_post_typing_time` site setting was renamed to `fast_typing_threshold` https://github.com/discourse/discourse/pull/30865 --- responses/admin/site_settings.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/responses/admin/site_settings.json b/responses/admin/site_settings.json index cf5b43c..a12a717 100644 --- a/responses/admin/site_settings.json +++ b/responses/admin/site_settings.json @@ -3604,13 +3604,17 @@ "preview": null }, { - "setting": "min_first_post_typing_time", - "description": "Minimum amount of time in milliseconds a user must type during first post, if threshold is not met post will automatically enter the needs approval queue. Set to 0 to disable (not recommended)", - "default": "3000", - "type": "fixnum", - "value": "3000", - "category": "spam", - "preview": null + "setting": "fast_typing_threshold", + "description": "Minimum amount of time in milliseconds a user must type during the first post, if the threshold is not met, the post will automatically enter the needs approval queue. Low is 1 second, standard is 3 seconds, high is 5 seconds.", + "default": "standard", + "type": "list", + "value": "standard", + "choices": [ + "disabled", + "low", + "standard", + "high" + ] }, { "setting": "auto_block_fast_typers_on_first_post",