mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-23 01:55:00 +02:00
9 lines
228 B
Svelte
9 lines
228 B
Svelte
<script lang="ts">
|
|
import { getCurrentEmployee } from '@hcengineering/contact'
|
|
import Documents from './Documents.svelte'
|
|
|
|
const currentUser = getCurrentEmployee()
|
|
</script>
|
|
|
|
<Documents query={{ authors: currentUser }} />
|