diff options
| author | Marie <marie@kaifa.ch> | 2024-02-24 18:16:43 +0000 |
|---|---|---|
| committer | Marie <marie@kaifa.ch> | 2024-02-24 18:16:43 +0000 |
| commit | 2fa0e238b74e689f0ef901a73bf78f21c82ab024 (patch) | |
| tree | 231c005c07a2c3870fa2aa39ff060357b2382a0b | |
| parent | merge: fix: delete old follow request (if exists) before creating new (!440) (diff) | |
| parent | Update index.vue - I'm dumb sorry (diff) | |
| download | sharkey-2fa0e238b74e689f0ef901a73bf78f21c82ab024.tar.gz sharkey-2fa0e238b74e689f0ef901a73bf78f21c82ab024.tar.bz2 sharkey-2fa0e238b74e689f0ef901a73bf78f21c82ab024.zip | |
merge: Update index.vue - Also check enableMcaptcha for noBotProtection (!442)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/442
Approved-by: dakkar <dakkar@thenautilus.net>
Approved-by: Marie <marie@kaifa.ch>
| -rw-r--r-- | packages/frontend/src/pages/admin/index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/admin/index.vue b/packages/frontend/src/pages/admin/index.vue index 5a19e9a7c6..0fd073dd0d 100644 --- a/packages/frontend/src/pages/admin/index.vue +++ b/packages/frontend/src/pages/admin/index.vue @@ -59,7 +59,7 @@ const view = ref(null); const el = ref<HTMLDivElement | null>(null); const pageProps = ref({}); let noMaintainerInformation = isEmpty(instance.maintainerName) || isEmpty(instance.maintainerEmail); -let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha && !instance.enableTurnstile; +let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha && !instance.enableMcaptcha && !instance.enableTurnstile; let noEmailServer = !instance.enableEmail; const thereIsUnresolvedAbuseReport = ref(false); const pendingUserApprovals = ref(false); |