78 lines
2 KiB
Vue
78 lines
2 KiB
Vue
|
<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>
|
||
|
|
||
|
<FormSwitch v-model:value="enableRegistration">{{ $ts.enableRegistration }}</FormSwitch>
|
||
|
|
||
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
||
|
</FormSuspense>
|
||
|
</FormBase>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
||
|
import FormLink from '@client/components/form/link.vue';
|
||
|
import FormSwitch from '@client/components/form/switch.vue';
|
||
|
import FormButton from '@client/components/form/button.vue';
|
||
|
import FormBase from '@client/components/form/base.vue';
|
||
|
import FormGroup from '@client/components/form/group.vue';
|
||
|
import FormInfo from '@client/components/form/info.vue';
|
||
|
import FormSuspense from '@client/components/form/suspense.vue';
|
||
|
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,
|
||
|
icon: 'fas fa-lock'
|
||
|
},
|
||
|
enableHcaptcha: false,
|
||
|
enableRecaptcha: false,
|
||
|
enableRegistration: false,
|
||
|
}
|
||
|
},
|
||
|
|
||
|
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;
|
||
|
},
|
||
|
|
||
|
save() {
|
||
|
os.apiWithDialog('admin/update-meta', {
|
||
|
disableRegistration: !this.enableRegistration,
|
||
|
}).then(() => {
|
||
|
fetchInstance();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|