mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-02 14:29:03 +02:00
8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
import { type Doc } from '@hcengineering/core'
|
|
import { showPopup } from '@hcengineering/ui'
|
|
import MoveApplication from './components/MoveApplication.svelte'
|
|
|
|
export async function MoveApplicant (docs: Doc | Doc[]): Promise<void> {
|
|
showPopup(MoveApplication, { selected: Array.isArray(docs) ? docs : [docs] })
|
|
}
|