pinafore/src/routes/_actions/mention.js

9 wiersze
357 B
JavaScript
Czysty Zwykły widok Historia

import { importShowComposeDialog } from '../_components/dialog/asyncDialogs/importShowComposeDialog.js'
import { store } from '../_store/store.js'
export async function composeNewStatusMentioning (account) {
store.setComposeData('dialog', { text: `@${account.acct} ` })
2019-08-03 20:49:37 +00:00
const showComposeDialog = await importShowComposeDialog()
showComposeDialog()
}