Export Events
{#if isLoggedIn && userRole === 'owner'}Export All Events
Download the complete database as a JSONL file. This includes all events from all users.
Export My Events
Download your personal events as a JSONL file.
Please log in to access export functionality.
Import Events
{#if isLoggedIn && (userRole === 'admin' || userRole === 'owner')}Import Events
Upload a JSONL file to import events into the database.
Please log in to access import functionality.
My Events
{#if isLoggedIn}View and manage your personal events.
{#if myEvents.length > 0}
{#each myEvents as event}
{/each}
{:else}
Kind {event.kind}
{new Date(event.created_at * 1000).toLocaleString()}
{event.content}
No events found.
{/if}Please log in to view your events.
All Events
{#if isLoggedIn && (userRole === 'write' || userRole === 'admin' || userRole === 'owner')}View all events in the database.
{#if allEvents.length > 0}
{#each allEvents as event}
{/each}
{:else}
Kind {event.kind}
{new Date(event.created_at * 1000).toLocaleString()}
{event.content}
No events found.
{/if}Please log in to view events.