feat: add turnstile captcha to auth flow (#2703)

This commit is contained in:
Lucas Smith
2026-04-16 14:29:07 +10:00
committed by GitHub
parent 5082226e08
commit f54a8ed72f
12 changed files with 211 additions and 15 deletions
@@ -4,8 +4,8 @@ import { createRateLimit } from './rate-limit';
export const signupRateLimit = createRateLimit({
action: 'auth.signup',
max: 10,
window: '1h',
max: 3,
window: '3h',
});
export const forgotPasswordRateLimit = createRateLimit({