2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-01-04 14:16:41 +02:00
|
|
|
<FormSuspense :p="init">
|
|
|
|
<div class="_formRoot">
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormSwitch v-model="enableGithubIntegration" class="_formBlock">
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.enable }}</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</FormSwitch>
|
|
|
|
|
|
|
|
<template v-if="enableGithubIntegration">
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInfo class="_formBlock">Callback URL: {{ `${uri}/api/gh/cb` }}</FormInfo>
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInput v-model="githubClientId" class="_formBlock">
|
2021-04-22 16:29:33 +03:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Client ID</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</FormInput>
|
|
|
|
|
2022-01-04 11:35:21 +02:00
|
|
|
<FormInput v-model="githubClientSecret" class="_formBlock">
|
2021-04-22 16:29:33 +03:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2022-01-04 11:35:21 +02:00
|
|
|
<template #label>Client Secret</template>
|
2021-04-22 16:29:33 +03:00
|
|
|
</FormInput>
|
|
|
|
</template>
|
|
|
|
|
2022-07-20 16:24:26 +03:00
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
2022-01-04 14:16:41 +02:00
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 19:31:48 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 11:35:21 +02:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import FormButton from '@/components/MkButton.vue';
|
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
2022-01-04 11:35:21 +02:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-02-28 20:51:31 +02:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-07-20 16:24:26 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-17 19:31:48 +03:00
|
|
|
let uri: string = $ref('');
|
|
|
|
let enableGithubIntegration: boolean = $ref(false);
|
|
|
|
let githubClientId: string | null = $ref(null);
|
|
|
|
let githubClientSecret: string | null = $ref(null);
|
|
|
|
|
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
uri = meta.uri;
|
|
|
|
enableGithubIntegration = meta.enableGithubIntegration;
|
|
|
|
githubClientId = meta.githubClientId;
|
|
|
|
githubClientSecret = meta.githubClientSecret;
|
|
|
|
}
|
|
|
|
|
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
enableGithubIntegration,
|
|
|
|
githubClientId,
|
|
|
|
githubClientSecret,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
</script>
|