mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-03 01:38:45 +02:00
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
10 lines
338 B
Svelte
10 lines
338 B
Svelte
<script lang="ts">
|
|
import { Employee, PersonAccount } from '@hcengineering/contact'
|
|
import { Ref, getCurrentAccount } from '@hcengineering/core'
|
|
import Documents from './Documents.svelte'
|
|
|
|
const currentUser = (getCurrentAccount() as PersonAccount).person as Ref<Employee>
|
|
</script>
|
|
|
|
<Documents query={{ authors: currentUser }} />
|