Added Directus System Endpoint and displaying files

This commit is contained in:
Samuel Andert
2023-09-13 13:49:56 +02:00
parent b1185b44dd
commit 91b351ef2e
14 changed files with 2898 additions and 16 deletions

View File

@ -20,7 +20,7 @@
{:else if $bookmarksQuery.error}
<pre>Error: {JSON.stringify($bookmarksQuery.error, null, 2)}</pre>
{:else}
{#each $bookmarksQuery.data.directus_bookmarks as bookmark (bookmark.id)}
{#each $bookmarksQuery.data.db_bookmarks as bookmark (bookmark.id)}
<a href={bookmark.url} class="text-blue-500 hover:underline">
{bookmark.name}
</a>