fix: integration links (#8036)
This commit is contained in:
parent
640fc337af
commit
b635b064ee
3 changed files with 6 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
||||||
</FormSwitch>
|
</FormSwitch>
|
||||||
|
|
||||||
<template v-if="enableDiscordIntegration">
|
<template v-if="enableDiscordIntegration">
|
||||||
<FormInfo>Callback URL: {{ `${url}/api/dc/cb` }}</FormInfo>
|
<FormInfo>Callback URL: {{ `${uri}/api/dc/cb` }}</FormInfo>
|
||||||
|
|
||||||
<FormInput v-model="discordClientId">
|
<FormInput v-model="discordClientId">
|
||||||
<template #prefix><i class="fas fa-key"></i></template>
|
<template #prefix><i class="fas fa-key"></i></template>
|
||||||
|
@ -67,6 +67,7 @@ export default defineComponent({
|
||||||
methods: {
|
methods: {
|
||||||
async init() {
|
async init() {
|
||||||
const meta = await os.api('meta', { detail: true });
|
const meta = await os.api('meta', { detail: true });
|
||||||
|
this.uri = meta.uri;
|
||||||
this.enableDiscordIntegration = meta.enableDiscordIntegration;
|
this.enableDiscordIntegration = meta.enableDiscordIntegration;
|
||||||
this.discordClientId = meta.discordClientId;
|
this.discordClientId = meta.discordClientId;
|
||||||
this.discordClientSecret = meta.discordClientSecret;
|
this.discordClientSecret = meta.discordClientSecret;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</FormSwitch>
|
</FormSwitch>
|
||||||
|
|
||||||
<template v-if="enableGithubIntegration">
|
<template v-if="enableGithubIntegration">
|
||||||
<FormInfo>Callback URL: {{ `${url}/api/gh/cb` }}</FormInfo>
|
<FormInfo>Callback URL: {{ `${uri}/api/gh/cb` }}</FormInfo>
|
||||||
|
|
||||||
<FormInput v-model="githubClientId">
|
<FormInput v-model="githubClientId">
|
||||||
<template #prefix><i class="fas fa-key"></i></template>
|
<template #prefix><i class="fas fa-key"></i></template>
|
||||||
|
@ -67,6 +67,7 @@ export default defineComponent({
|
||||||
methods: {
|
methods: {
|
||||||
async init() {
|
async init() {
|
||||||
const meta = await os.api('meta', { detail: true });
|
const meta = await os.api('meta', { detail: true });
|
||||||
|
this.uri = meta.uri;
|
||||||
this.enableGithubIntegration = meta.enableGithubIntegration;
|
this.enableGithubIntegration = meta.enableGithubIntegration;
|
||||||
this.githubClientId = meta.githubClientId;
|
this.githubClientId = meta.githubClientId;
|
||||||
this.githubClientSecret = meta.githubClientSecret;
|
this.githubClientSecret = meta.githubClientSecret;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</FormSwitch>
|
</FormSwitch>
|
||||||
|
|
||||||
<template v-if="enableTwitterIntegration">
|
<template v-if="enableTwitterIntegration">
|
||||||
<FormInfo>Callback URL: {{ `${url}/api/tw/cb` }}</FormInfo>
|
<FormInfo>Callback URL: {{ `${uri}/api/tw/cb` }}</FormInfo>
|
||||||
|
|
||||||
<FormInput v-model="twitterConsumerKey">
|
<FormInput v-model="twitterConsumerKey">
|
||||||
<template #prefix><i class="fas fa-key"></i></template>
|
<template #prefix><i class="fas fa-key"></i></template>
|
||||||
|
@ -67,6 +67,7 @@ export default defineComponent({
|
||||||
methods: {
|
methods: {
|
||||||
async init() {
|
async init() {
|
||||||
const meta = await os.api('meta', { detail: true });
|
const meta = await os.api('meta', { detail: true });
|
||||||
|
this.uri = meta.uri;
|
||||||
this.enableTwitterIntegration = meta.enableTwitterIntegration;
|
this.enableTwitterIntegration = meta.enableTwitterIntegration;
|
||||||
this.twitterConsumerKey = meta.twitterConsumerKey;
|
this.twitterConsumerKey = meta.twitterConsumerKey;
|
||||||
this.twitterConsumerSecret = meta.twitterConsumerSecret;
|
this.twitterConsumerSecret = meta.twitterConsumerSecret;
|
||||||
|
|
Loading…
Reference in a new issue