feat: use different app name for dev

pull/241/head
Anthony Fu 2022-11-30 06:45:07 +08:00
rodzic cf63bce459
commit c85d9bb913
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ import { parseURL } from 'ufo'
import { $fetch } from 'ohmyfetch'
import type { Storage } from 'unstorage'
import { isCI } from 'std-env'
import cached from './cache-driver'
import type { AppInfo } from '~/types'
@ -41,7 +42,7 @@ async function fetchAppInfo(server: string) {
const app: AppInfo = await $fetch(`https://${server}/api/v1/apps`, {
method: 'POST',
body: {
client_name: APP_NAME,
client_name: APP_NAME + (isCI ? '' : ' (dev)'),
redirect_uris,
scopes: 'read write follow push',
},