mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-11 04:07:43 +02:00
10 lines
310 B
Svelte
10 lines
310 B
Svelte
<script lang="ts">
|
|
import { EmployeeAccount } from '@hcengineering/contact'
|
|
import { getCurrentAccount } from '@hcengineering/core'
|
|
import Documents from './Documents.svelte'
|
|
|
|
const currentUser = getCurrentAccount() as EmployeeAccount
|
|
</script>
|
|
|
|
<Documents query={{ authors: currentUser.employee }} />
|