mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-05 18:34:49 +00:00
8 lines
310 B
TypeScript
8 lines
310 B
TypeScript
|
import { 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] })
|
||
|
}
|