summary refs log tree commit diff
path: root/util/src/config/types/subconfigurations/security/Captcha.ts
blob: ad6aa7629e4947f69d358bb67ea4bd14b73fbde2 (plain) (blame)
1
2
3
4
5
6
export class CaptchaConfiguration {
    enabled: boolean = false;
    service: "recaptcha" | "hcaptcha" | null = null; // TODO: hcaptcha, custom
    sitekey: string | null = null;
    secret: string | null = null;
}