2021-04-22 08:29:33 -05:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<FormLink to="/instance/bot-protection">
|
|
|
|
<i class="fas fa-shield-alt"></i> {{ $ts.botProtection }}
|
|
|
|
<template #suffix v-if="enableHcaptcha">hCaptcha</template>
|
|
|
|
<template #suffix v-else-if="enableRecaptcha">reCAPTCHA</template>
|
|
|
|
<template #suffix v-else>{{ $ts.none }} ({{ $ts.notRecommended }})</template>
|
|
|
|
</FormLink>
|
|
|
|
|
2021-09-29 10:50:45 -05:00
|
|
|
<FormSwitch v-model="enableRegistration">{{ $ts.enableRegistration }}</FormSwitch>
|
2021-04-22 08:29:33 -05:00
|
|
|
|
2021-10-07 23:37:02 -05:00
|
|
|
<FormSwitch v-model="emailRequiredForSignup">{{ $ts.emailRequiredForSignup }}</FormSwitch>
|
|
|
|
|
2021-04-22 08:29:33 -05:00
|
|
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
|
|
</FormSuspense>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2021-09-29 10:50:45 -05:00
|
|
|
import FormLink from '@client/components/debobigego/link.vue';
|
|
|
|
import FormSwitch from '@client/components/debobigego/switch.vue';
|
|
|
|
import FormButton from '@client/components/debobigego/button.vue';
|
|
|
|
import FormBase from '@client/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@client/components/debobigego/group.vue';
|
|
|
|
import FormInfo from '@client/components/debobigego/info.vue';
|
|
|
|
import FormSuspense from '@client/components/debobigego/suspense.vue';
|
2021-04-22 08:29:33 -05:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import * as symbols from '@client/symbols';
|
|
|
|
import { fetchInstance } from '@client/instance';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormLink,
|
|
|
|
FormSwitch,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormButton,
|
|
|
|
FormInfo,
|
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.security,
|
2021-10-10 01:19:16 -05:00
|
|
|
icon: 'fas fa-lock',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
|
|
|
enableHcaptcha: false,
|
|
|
|
enableRecaptcha: false,
|
|
|
|
enableRegistration: false,
|
2021-10-07 23:37:02 -05:00
|
|
|
emailRequiredForSignup: false,
|
2021-04-22 08:29:33 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
|
|
|
this.enableHcaptcha = meta.enableHcaptcha;
|
|
|
|
this.enableRecaptcha = meta.enableRecaptcha;
|
|
|
|
this.enableRegistration = !meta.disableRegistration;
|
2021-10-07 23:37:02 -05:00
|
|
|
this.emailRequiredForSignup = meta.emailRequiredForSignup;
|
2021-04-22 08:29:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
disableRegistration: !this.enableRegistration,
|
2021-10-07 23:37:02 -05:00
|
|
|
emailRequiredForSignup: this.emailRequiredForSignup,
|
2021-04-22 08:29:33 -05:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|