1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-08 23:36:49 +01:00
elk/composables/client.ts

10 lines
336 B
TypeScript
Raw Normal View History

2022-11-22 23:08:36 +00:00
import { login } from 'masto'
2022-11-23 04:25:48 +00:00
import { currentUser } from './users'
2022-11-22 23:08:36 +00:00
import { DEFAULT_SERVER } from '~/constants'
2022-11-13 05:34:43 +00:00
2022-11-22 23:08:36 +00: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,
})