Your morning review queue, collected automatically from SharePoint.
Dashboard data
Ready to refresh
Review queue
Cases needing attention —
New since last reviewWaiting 7+ days
Loading case queue…
Connect your case database
This dashboard reads the unassigned-case queue from your Supabase project — the same database the LOLK Hub uses. Paste your Project URL and anon key (Supabase → Project Settings → API). They are stored only in this browser.
Table this dashboard expects
create table unassigned_cases (
id bigint generated always as identity primary key,
client_name text not null,
employer text,
claims text,
missing_items text,
summary text,
strength text,
strength_reason text,
retainer text,
folder_url text,
status text not null default 'new', -- new | seen | assigned
detected_at timestamptz not null default now(),
assigned_at timestamptz
);
alter table unassigned_cases enable row level security;
create policy "public access" on unassigned_cases
for all using (true) with check (true);