2022-11-23 07:08:36 +08:00
|
|
|
import { login } from 'masto'
|
2022-11-23 12:25:48 +08:00
|
|
|
import { currentUser } from './users'
|
2022-11-23 07:08:36 +08:00
|
|
|
import { DEFAULT_SERVER } from '~/constants'
|
2022-11-13 13:34:43 +08:00
|
|
|
|
2022-11-23 07:08:36 +08:00
|
|
|
// TODO: improve upsteam to make this synchronous (delayed auth)
|
|
|
|
export const masto = await login({
|
|
|
|
url: `https://${currentUser.value?.server || DEFAULT_SERVER}`,
|
|
|
|
accessToken: currentUser.value?.token || undefined,
|
|
|
|
})
|