Interface QuestionCaptchaConfig

Declarative captcha configuration consulted by the forms helper while rendering captcha prompts and validating user responses (see routes/helpers/forms.ts).

interface QuestionCaptchaConfig {
    captchas: {
        answerKey: string;
        placeholderKey?: string;
        questionKey: string;
    }[];
    forms: Record<string, string | boolean>;
}

Properties

Properties

captchas: { answerKey: string; placeholderKey?: string; questionKey: string }[]
forms: Record<string, string | boolean>