feat: implement user account management features including enable/disable functionality and real-time presence tracking

This commit is contained in:
Flavio Fois
2026-02-16 07:43:31 +01:00
parent a89b18d434
commit 894e8d9e51
19 changed files with 395 additions and 8 deletions

View File

@@ -2,12 +2,13 @@
import { goto, invalidateAll } from '$app/navigation';
import { page } from '$app/stores';
import { statusColors, statusLabels, formatDate } from '$lib/utils';
import { Search, ChevronLeft, ChevronRight, Filter, Paperclip, RefreshCcw, Inbox } from 'lucide-svelte';
import { Search, ChevronLeft, ChevronRight, Filter, Paperclip, RefreshCcw, Inbox, Upload } from 'lucide-svelte';
import { Button } from '$lib/components/ui/button';
import { Input } from '$lib/components/ui/input';
import * as Table from '$lib/components/ui/table';
import * as Select from '$lib/components/ui/select';
import * as Empty from '$lib/components/ui/empty';
import * as Dialog from '$lib/components/ui/dialog';
let { data } = $props();
@@ -222,3 +223,4 @@
</div>
{/if}
</div>