Skip to content
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

FIX: fast_typing_threshold site setting #134

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions responses/admin/site_settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down