summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/security/Captcha.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/config/types/subconfigurations/security/Captcha.ts')
-rw-r--r--src/util/config/types/subconfigurations/security/Captcha.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/config/types/subconfigurations/security/Captcha.ts b/src/util/config/types/subconfigurations/security/Captcha.ts
index ad6aa762..21c4ef44 100644
--- a/src/util/config/types/subconfigurations/security/Captcha.ts
+++ b/src/util/config/types/subconfigurations/security/Captcha.ts
@@ -1,6 +1,6 @@
 export class CaptchaConfiguration {
-    enabled: boolean = false;
-    service: "recaptcha" | "hcaptcha" | null = null; // TODO: hcaptcha, custom
-    sitekey: string | null = null;
-    secret: string | null = null;
-}
\ No newline at end of file
+	enabled: boolean = false;
+	service: "recaptcha" | "hcaptcha" | null = null; // TODO: hcaptcha, custom
+	sitekey: string | null = null;
+	secret: string | null = null;
+}