feat: Add support for mCaptcha (#12905)
* feat: Add support for mCaptcha * fix: Fix docker compose configuration * chore(frontend/docs): update changelog & fix eslint errors * `@mcaptcha/vanilla-glue`をダイナミックインポートするように * chore: Add missing prefix to CHANGELOG * refactor(backend): 適当につけた変数の名前を変更
This commit is contained in:
parent
b55a6a80e1
commit
072f67d6e7
24 changed files with 336 additions and 62 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-02T08:53:57.449Z
|
||||
* generatedAt: 2024-01-04T18:10:15.096Z
|
||||
*/
|
||||
|
||||
import type { SwitchCaseResponseType } from '../api.js';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-02T08:53:57.445Z
|
||||
* generatedAt: 2024-01-04T18:10:15.094Z
|
||||
*/
|
||||
|
||||
import type {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-02T08:53:57.443Z
|
||||
* generatedAt: 2024-01-04T18:10:15.093Z
|
||||
*/
|
||||
|
||||
import { operations } from './types.js';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-02T08:53:57.441Z
|
||||
* generatedAt: 2024-01-04T18:10:15.091Z
|
||||
*/
|
||||
|
||||
import { components } from './types.js';
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*
|
||||
* version: 2023.12.2
|
||||
* generatedAt: 2024-01-02T08:53:56.447Z
|
||||
* generatedAt: 2024-01-04T18:10:15.023Z
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -4400,6 +4400,9 @@ export type operations = {
|
|||
emailRequiredForSignup: boolean;
|
||||
enableHcaptcha: boolean;
|
||||
hcaptchaSiteKey: string | null;
|
||||
enableMcaptcha: boolean;
|
||||
mcaptchaSiteKey: string | null;
|
||||
mcaptchaInstanceUrl: string | null;
|
||||
enableRecaptcha: boolean;
|
||||
recaptchaSiteKey: string | null;
|
||||
enableTurnstile: boolean;
|
||||
|
@ -4425,6 +4428,7 @@ export type operations = {
|
|||
bannedEmailDomains?: string[];
|
||||
preservedUsernames: string[];
|
||||
hcaptchaSecretKey: string | null;
|
||||
mcaptchaSecretKey: string | null;
|
||||
recaptchaSecretKey: string | null;
|
||||
turnstileSecretKey: string | null;
|
||||
sensitiveMediaDetection: string;
|
||||
|
@ -8197,6 +8201,10 @@ export type operations = {
|
|||
enableHcaptcha?: boolean;
|
||||
hcaptchaSiteKey?: string | null;
|
||||
hcaptchaSecretKey?: string | null;
|
||||
enableMcaptcha?: boolean;
|
||||
mcaptchaSiteKey?: string | null;
|
||||
mcaptchaInstanceUrl?: string | null;
|
||||
mcaptchaSecretKey?: string | null;
|
||||
enableRecaptcha?: boolean;
|
||||
recaptchaSiteKey?: string | null;
|
||||
recaptchaSecretKey?: string | null;
|
||||
|
@ -18704,6 +18712,9 @@ export type operations = {
|
|||
emailRequiredForSignup: boolean;
|
||||
enableHcaptcha: boolean;
|
||||
hcaptchaSiteKey: string | null;
|
||||
enableMcaptcha: boolean;
|
||||
mcaptchaSiteKey: string | null;
|
||||
mcaptchaInstanceUrl: string | null;
|
||||
enableRecaptcha: boolean;
|
||||
recaptchaSiteKey: string | null;
|
||||
enableTurnstile: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue