mirror of
https://github.com/sim1222/misskey.git
synced 2025-04-29 02:37:22 +09:00
61 lines
1.9 KiB
Vue
61 lines
1.9 KiB
Vue
<template>
|
|
<FormSuspense :p="init">
|
|
<div class="_formRoot">
|
|
<FormSwitch v-model="enableDiscordIntegration" class="_formBlock">
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
|
</FormSwitch>
|
|
|
|
<template v-if="enableDiscordIntegration">
|
|
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/dc/cb` }}</FormInfo>
|
|
|
|
<FormInput v-model="discordClientId" class="_formBlock">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
<template #label>Client ID</template>
|
|
</FormInput>
|
|
|
|
<FormInput v-model="discordClientSecret" class="_formBlock">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
<template #label>Client Secret</template>
|
|
</FormInput>
|
|
</template>
|
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
|
</div>
|
|
</FormSuspense>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
import FormInput from '@/components/form/input.vue';
|
|
import FormButton from '@/components/MkButton.vue';
|
|
import FormInfo from '@/components/MkInfo.vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import * as os from '@/os';
|
|
import { fetchInstance } from '@/instance';
|
|
import { i18n } from '@/i18n';
|
|
|
|
let uri: string = ref('');
|
|
let enableDiscordIntegration: boolean = ref(false);
|
|
let discordClientId: string | null = ref(null);
|
|
let discordClientSecret: string | null = ref(null);
|
|
|
|
async function init() {
|
|
const meta = await os.api('admin/meta');
|
|
uri.value = meta.uri;
|
|
enableDiscordIntegration.value = meta.enableDiscordIntegration;
|
|
discordClientId.value = meta.discordClientId;
|
|
discordClientSecret.value = meta.discordClientSecret;
|
|
}
|
|
|
|
function save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
enableDiscordIntegration: enableDiscordIntegration.value,
|
|
discordClientId: discordClientId.value,
|
|
discordClientSecret: discordClientSecret.value,
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
</script>
|