elk/plugins/masto.ts

12 lines
256 B
TypeScript
Raw Normal View History

2022-11-14 03:20:07 +01:00
import { login } from 'masto'
export default defineNuxtPlugin((nuxt) => {
2022-11-15 16:48:23 +01:00
const { server, token } = useAppCookies()
2022-11-15 12:54:07 +01:00
2022-11-14 03:20:07 +01:00
const masto = login({
2022-11-15 16:48:23 +01:00
url: `https://${server.value}`,
2022-11-14 15:54:30 +01:00
accessToken: token.value,
2022-11-14 03:20:07 +01:00
})
nuxt.vueApp.provide('masto', masto)
})